final case class ConfigMapNodeConfigSource(name: String, kubeletConfigKey: String, namespace: String, resourceVersion: Option[String] = None, uid: Option[String] = None) extends Product with Serializable
ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConfigMapNodeConfigSource
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val kubeletConfigKey: String
- def mapKubeletConfigKey(f: (String) => String): ConfigMapNodeConfigSource
transforms kubeletConfigKey to result of function
- def mapName(f: (String) => String): ConfigMapNodeConfigSource
transforms name to result of function
- def mapNamespace(f: (String) => String): ConfigMapNodeConfigSource
transforms namespace to result of function
- def mapResourceVersion(f: (String) => String): ConfigMapNodeConfigSource
if resourceVersion has a value, transforms to the result of function
- def mapUid(f: (String) => String): ConfigMapNodeConfigSource
if uid has a value, transforms to the result of function
- val name: String
- val namespace: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val resourceVersion: Option[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val uid: Option[String]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withKubeletConfigKey(value: String): ConfigMapNodeConfigSource
Returns a new data with kubeletConfigKey set to new value
- def withName(value: String): ConfigMapNodeConfigSource
Returns a new data with name set to new value
- def withNamespace(value: String): ConfigMapNodeConfigSource
Returns a new data with namespace set to new value
- def withResourceVersion(value: String): ConfigMapNodeConfigSource
Returns a new data with resourceVersion set to new value
- def withUid(value: String): ConfigMapNodeConfigSource
Returns a new data with uid set to new value