Skip to content

minio.v2.tenant

Index

Fields

fn new

new(name)

new returns an instance of Tenant

obj metadata

"ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create."

fn metadata.withAnnotations

withAnnotations(annotations)

"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"

fn metadata.withAnnotationsMixin

withAnnotationsMixin(annotations)

"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations"

Note: This function appends passed data to existing values

fn metadata.withClusterName

withClusterName(clusterName)

"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request."

fn metadata.withCreationTimestamp

withCreationTimestamp(creationTimestamp)

"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."

fn metadata.withDeletionGracePeriodSeconds

withDeletionGracePeriodSeconds(deletionGracePeriodSeconds)

"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only."

fn metadata.withDeletionTimestamp

withDeletionTimestamp(deletionTimestamp)

"Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers."

fn metadata.withFinalizers

withFinalizers(finalizers)

"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."

fn metadata.withFinalizersMixin

withFinalizersMixin(finalizers)

"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."

Note: This function appends passed data to existing values

fn metadata.withGenerateName

withGenerateName(generateName)

"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency"

fn metadata.withGeneration

withGeneration(generation)

"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only."

fn metadata.withLabels

withLabels(labels)

"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"

fn metadata.withLabelsMixin

withLabelsMixin(labels)

"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels"

Note: This function appends passed data to existing values

fn metadata.withName

withName(name)

"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names"

fn metadata.withNamespace

withNamespace(namespace)

"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces"

fn metadata.withOwnerReferences

withOwnerReferences(ownerReferences)

"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."

fn metadata.withOwnerReferencesMixin

withOwnerReferencesMixin(ownerReferences)

"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."

Note: This function appends passed data to existing values

fn metadata.withResourceVersion

withResourceVersion(resourceVersion)

"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency"

withSelfLink(selfLink)

"SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release."

fn metadata.withUid

withUid(uid)

"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids"

obj scheduler

fn scheduler.withName

withName(name)

obj spec

fn spec.withAdditionalVolumeMounts

withAdditionalVolumeMounts(additionalVolumeMounts)

fn spec.withAdditionalVolumeMountsMixin

withAdditionalVolumeMountsMixin(additionalVolumeMounts)

Note: This function appends passed data to existing values

fn spec.withAdditionalVolumes

withAdditionalVolumes(additionalVolumes)

fn spec.withAdditionalVolumesMixin

withAdditionalVolumesMixin(additionalVolumes)

Note: This function appends passed data to existing values

fn spec.withBuckets

withBuckets(buckets)

fn spec.withBucketsMixin

withBucketsMixin(buckets)

Note: This function appends passed data to existing values

fn spec.withEnv

withEnv(env)

fn spec.withEnvMixin

withEnvMixin(env)

Note: This function appends passed data to existing values

fn spec.withExternalCaCertSecret

withExternalCaCertSecret(externalCaCertSecret)

fn spec.withExternalCaCertSecretMixin

withExternalCaCertSecretMixin(externalCaCertSecret)

Note: This function appends passed data to existing values

fn spec.withExternalCertSecret

withExternalCertSecret(externalCertSecret)

fn spec.withExternalCertSecretMixin

withExternalCertSecretMixin(externalCertSecret)

Note: This function appends passed data to existing values

fn spec.withExternalClientCertSecrets

withExternalClientCertSecrets(externalClientCertSecrets)

fn spec.withExternalClientCertSecretsMixin

withExternalClientCertSecretsMixin(externalClientCertSecrets)

Note: This function appends passed data to existing values

fn spec.withImage

withImage(image)

fn spec.withImagePullPolicy

withImagePullPolicy(imagePullPolicy)

fn spec.withInitContainers

withInitContainers(initContainers)

fn spec.withInitContainersMixin

withInitContainersMixin(initContainers)

Note: This function appends passed data to existing values

fn spec.withMountPath

withMountPath(mountPath)

fn spec.withPodManagementPolicy

withPodManagementPolicy(podManagementPolicy)

fn spec.withPools

withPools(pools)

fn spec.withPoolsMixin

withPoolsMixin(pools)

Note: This function appends passed data to existing values

fn spec.withPriorityClassName

withPriorityClassName(priorityClassName)

fn spec.withPrometheusOperator

withPrometheusOperator(prometheusOperator)

fn spec.withRequestAutoCert

withRequestAutoCert(requestAutoCert)

fn spec.withServiceAccountName

withServiceAccountName(serviceAccountName)

fn spec.withSubPath

withSubPath(subPath)

fn spec.withUsers

withUsers(users)

fn spec.withUsersMixin

withUsersMixin(users)

Note: This function appends passed data to existing values

obj spec.additionalVolumeMounts

fn spec.additionalVolumeMounts.withMountPath

withMountPath(mountPath)

fn spec.additionalVolumeMounts.withMountPropagation

withMountPropagation(mountPropagation)

fn spec.additionalVolumeMounts.withName

withName(name)

fn spec.additionalVolumeMounts.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumeMounts.withSubPath

withSubPath(subPath)

fn spec.additionalVolumeMounts.withSubPathExpr

withSubPathExpr(subPathExpr)

obj spec.additionalVolumes

fn spec.additionalVolumes.withName

withName(name)

obj spec.additionalVolumes.awsElasticBlockStore

fn spec.additionalVolumes.awsElasticBlockStore.withFsType

withFsType(fsType)

fn spec.additionalVolumes.awsElasticBlockStore.withPartition

withPartition(partition)

fn spec.additionalVolumes.awsElasticBlockStore.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.awsElasticBlockStore.withVolumeID

withVolumeID(volumeID)

obj spec.additionalVolumes.azureDisk

fn spec.additionalVolumes.azureDisk.withCachingMode

withCachingMode(cachingMode)

fn spec.additionalVolumes.azureDisk.withDiskName

withDiskName(diskName)

fn spec.additionalVolumes.azureDisk.withDiskURI

withDiskURI(diskURI)

fn spec.additionalVolumes.azureDisk.withFsType

withFsType(fsType)

fn spec.additionalVolumes.azureDisk.withKind

withKind(kind)

fn spec.additionalVolumes.azureDisk.withReadOnly

withReadOnly(readOnly)

obj spec.additionalVolumes.azureFile

fn spec.additionalVolumes.azureFile.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.azureFile.withSecretName

withSecretName(secretName)

fn spec.additionalVolumes.azureFile.withShareName

withShareName(shareName)

obj spec.additionalVolumes.cephfs

fn spec.additionalVolumes.cephfs.withMonitors

withMonitors(monitors)

fn spec.additionalVolumes.cephfs.withMonitorsMixin

withMonitorsMixin(monitors)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.cephfs.withPath

withPath(path)

fn spec.additionalVolumes.cephfs.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.cephfs.withSecretFile

withSecretFile(secretFile)

fn spec.additionalVolumes.cephfs.withUser

withUser(user)

obj spec.additionalVolumes.cephfs.secretRef

fn spec.additionalVolumes.cephfs.secretRef.withName

withName(name)

obj spec.additionalVolumes.cinder

fn spec.additionalVolumes.cinder.withFsType

withFsType(fsType)

fn spec.additionalVolumes.cinder.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.cinder.withVolumeID

withVolumeID(volumeID)

obj spec.additionalVolumes.cinder.secretRef

fn spec.additionalVolumes.cinder.secretRef.withName

withName(name)

obj spec.additionalVolumes.configMap

fn spec.additionalVolumes.configMap.withDefaultMode

withDefaultMode(defaultMode)

fn spec.additionalVolumes.configMap.withItems

withItems(items)

fn spec.additionalVolumes.configMap.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.configMap.withName

withName(name)

fn spec.additionalVolumes.configMap.withOptional

withOptional(optional)

obj spec.additionalVolumes.configMap.items

fn spec.additionalVolumes.configMap.items.withKey

withKey(key)

fn spec.additionalVolumes.configMap.items.withMode

withMode(mode)

fn spec.additionalVolumes.configMap.items.withPath

withPath(path)

obj spec.additionalVolumes.csi

fn spec.additionalVolumes.csi.withDriver

withDriver(driver)

fn spec.additionalVolumes.csi.withFsType

withFsType(fsType)

fn spec.additionalVolumes.csi.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.csi.withVolumeAttributes

withVolumeAttributes(volumeAttributes)

fn spec.additionalVolumes.csi.withVolumeAttributesMixin

withVolumeAttributesMixin(volumeAttributes)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.csi.nodePublishSecretRef

fn spec.additionalVolumes.csi.nodePublishSecretRef.withName

withName(name)

obj spec.additionalVolumes.downwardAPI

fn spec.additionalVolumes.downwardAPI.withDefaultMode

withDefaultMode(defaultMode)

fn spec.additionalVolumes.downwardAPI.withItems

withItems(items)

fn spec.additionalVolumes.downwardAPI.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.downwardAPI.items

fn spec.additionalVolumes.downwardAPI.items.withMode

withMode(mode)

fn spec.additionalVolumes.downwardAPI.items.withPath

withPath(path)

obj spec.additionalVolumes.downwardAPI.items.fieldRef

fn spec.additionalVolumes.downwardAPI.items.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.additionalVolumes.downwardAPI.items.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.additionalVolumes.downwardAPI.items.resourceFieldRef

fn spec.additionalVolumes.downwardAPI.items.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.additionalVolumes.downwardAPI.items.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.additionalVolumes.downwardAPI.items.resourceFieldRef.withResource

withResource(resource)

obj spec.additionalVolumes.emptyDir

fn spec.additionalVolumes.emptyDir.withMedium

withMedium(medium)

fn spec.additionalVolumes.emptyDir.withSizeLimit

withSizeLimit(sizeLimit)

obj spec.additionalVolumes.ephemeral

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withAnnotations

withAnnotations(annotations)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withFinalizers

withFinalizers(finalizers)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withFinalizersMixin

withFinalizersMixin(finalizers)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withLabels

withLabels(labels)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withName

withName(name)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.metadata.withNamespace

withNamespace(namespace)

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withAccessModes

withAccessModes(accessModes)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withAccessModesMixin

withAccessModesMixin(accessModes)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withStorageClassName

withStorageClassName(storageClassName)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withVolumeAttributesClassName

withVolumeAttributesClassName(volumeAttributesClassName)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withVolumeMode

withVolumeMode(volumeMode)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.withVolumeName

withVolumeName(volumeName)

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSource

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSource.withApiGroup

withApiGroup(apiGroup)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSource.withKind

withKind(kind)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSource.withName

withName(name)

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withApiGroup

withApiGroup(apiGroup)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withKind

withKind(kind)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withName

withName(name)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withNamespace

withNamespace(namespace)

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.resources

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.resources.withLimits

withLimits(limits)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.resources.withRequests

withRequests(requests)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withKey

withKey(key)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withOperator

withOperator(operator)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withValues

withValues(values)

fn spec.additionalVolumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.fc

fn spec.additionalVolumes.fc.withFsType

withFsType(fsType)

fn spec.additionalVolumes.fc.withLun

withLun(lun)

fn spec.additionalVolumes.fc.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.fc.withTargetWWNs

withTargetWWNs(targetWWNs)

fn spec.additionalVolumes.fc.withTargetWWNsMixin

withTargetWWNsMixin(targetWWNs)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.fc.withWwids

withWwids(wwids)

fn spec.additionalVolumes.fc.withWwidsMixin

withWwidsMixin(wwids)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.flexVolume

fn spec.additionalVolumes.flexVolume.withDriver

withDriver(driver)

fn spec.additionalVolumes.flexVolume.withFsType

withFsType(fsType)

fn spec.additionalVolumes.flexVolume.withOptions

withOptions(options)

fn spec.additionalVolumes.flexVolume.withOptionsMixin

withOptionsMixin(options)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.flexVolume.withReadOnly

withReadOnly(readOnly)

obj spec.additionalVolumes.flexVolume.secretRef

fn spec.additionalVolumes.flexVolume.secretRef.withName

withName(name)

obj spec.additionalVolumes.flocker

fn spec.additionalVolumes.flocker.withDatasetName

withDatasetName(datasetName)

fn spec.additionalVolumes.flocker.withDatasetUUID

withDatasetUUID(datasetUUID)

obj spec.additionalVolumes.gcePersistentDisk

fn spec.additionalVolumes.gcePersistentDisk.withFsType

withFsType(fsType)

fn spec.additionalVolumes.gcePersistentDisk.withPartition

withPartition(partition)

fn spec.additionalVolumes.gcePersistentDisk.withPdName

withPdName(pdName)

fn spec.additionalVolumes.gcePersistentDisk.withReadOnly

withReadOnly(readOnly)

obj spec.additionalVolumes.gitRepo

fn spec.additionalVolumes.gitRepo.withDirectory

withDirectory(directory)

fn spec.additionalVolumes.gitRepo.withRepository

withRepository(repository)

fn spec.additionalVolumes.gitRepo.withRevision

withRevision(revision)

obj spec.additionalVolumes.glusterfs

fn spec.additionalVolumes.glusterfs.withEndpoints

withEndpoints(endpoints)

fn spec.additionalVolumes.glusterfs.withPath

withPath(path)

fn spec.additionalVolumes.glusterfs.withReadOnly

withReadOnly(readOnly)

obj spec.additionalVolumes.hostPath

fn spec.additionalVolumes.hostPath.withPath

withPath(path)

fn spec.additionalVolumes.hostPath.withType

withType(type)

obj spec.additionalVolumes.iscsi

fn spec.additionalVolumes.iscsi.withChapAuthDiscovery

withChapAuthDiscovery(chapAuthDiscovery)

fn spec.additionalVolumes.iscsi.withChapAuthSession

withChapAuthSession(chapAuthSession)

fn spec.additionalVolumes.iscsi.withFsType

withFsType(fsType)

fn spec.additionalVolumes.iscsi.withInitiatorName

withInitiatorName(initiatorName)

fn spec.additionalVolumes.iscsi.withIqn

withIqn(iqn)

fn spec.additionalVolumes.iscsi.withIscsiInterface

withIscsiInterface(iscsiInterface)

fn spec.additionalVolumes.iscsi.withLun

withLun(lun)

fn spec.additionalVolumes.iscsi.withPortals

withPortals(portals)

fn spec.additionalVolumes.iscsi.withPortalsMixin

withPortalsMixin(portals)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.iscsi.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.iscsi.withTargetPortal

withTargetPortal(targetPortal)

obj spec.additionalVolumes.iscsi.secretRef

fn spec.additionalVolumes.iscsi.secretRef.withName

withName(name)

obj spec.additionalVolumes.nfs

fn spec.additionalVolumes.nfs.withPath

withPath(path)

fn spec.additionalVolumes.nfs.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.nfs.withServer

withServer(server)

obj spec.additionalVolumes.persistentVolumeClaim

fn spec.additionalVolumes.persistentVolumeClaim.withClaimName

withClaimName(claimName)

fn spec.additionalVolumes.persistentVolumeClaim.withReadOnly

withReadOnly(readOnly)

obj spec.additionalVolumes.photonPersistentDisk

fn spec.additionalVolumes.photonPersistentDisk.withFsType

withFsType(fsType)

fn spec.additionalVolumes.photonPersistentDisk.withPdID

withPdID(pdID)

obj spec.additionalVolumes.portworxVolume

fn spec.additionalVolumes.portworxVolume.withFsType

withFsType(fsType)

fn spec.additionalVolumes.portworxVolume.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.portworxVolume.withVolumeID

withVolumeID(volumeID)

obj spec.additionalVolumes.projected

fn spec.additionalVolumes.projected.withDefaultMode

withDefaultMode(defaultMode)

fn spec.additionalVolumes.projected.withSources

withSources(sources)

fn spec.additionalVolumes.projected.withSourcesMixin

withSourcesMixin(sources)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.projected.sources

obj spec.additionalVolumes.projected.sources.clusterTrustBundle

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.withName

withName(name)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.withOptional

withOptional(optional)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.withPath

withPath(path)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.withSignerName

withSignerName(signerName)

obj spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.additionalVolumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.projected.sources.configMap

fn spec.additionalVolumes.projected.sources.configMap.withItems

withItems(items)

fn spec.additionalVolumes.projected.sources.configMap.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.projected.sources.configMap.withName

withName(name)

fn spec.additionalVolumes.projected.sources.configMap.withOptional

withOptional(optional)

obj spec.additionalVolumes.projected.sources.configMap.items

fn spec.additionalVolumes.projected.sources.configMap.items.withKey

withKey(key)

fn spec.additionalVolumes.projected.sources.configMap.items.withMode

withMode(mode)

fn spec.additionalVolumes.projected.sources.configMap.items.withPath

withPath(path)

obj spec.additionalVolumes.projected.sources.downwardAPI

fn spec.additionalVolumes.projected.sources.downwardAPI.withItems

withItems(items)

fn spec.additionalVolumes.projected.sources.downwardAPI.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

obj spec.additionalVolumes.projected.sources.downwardAPI.items

fn spec.additionalVolumes.projected.sources.downwardAPI.items.withMode

withMode(mode)

fn spec.additionalVolumes.projected.sources.downwardAPI.items.withPath

withPath(path)

obj spec.additionalVolumes.projected.sources.downwardAPI.items.fieldRef

fn spec.additionalVolumes.projected.sources.downwardAPI.items.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.additionalVolumes.projected.sources.downwardAPI.items.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.additionalVolumes.projected.sources.downwardAPI.items.resourceFieldRef

fn spec.additionalVolumes.projected.sources.downwardAPI.items.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.additionalVolumes.projected.sources.downwardAPI.items.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.additionalVolumes.projected.sources.downwardAPI.items.resourceFieldRef.withResource

withResource(resource)

obj spec.additionalVolumes.projected.sources.secret

fn spec.additionalVolumes.projected.sources.secret.withItems

withItems(items)

fn spec.additionalVolumes.projected.sources.secret.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.projected.sources.secret.withName

withName(name)

fn spec.additionalVolumes.projected.sources.secret.withOptional

withOptional(optional)

obj spec.additionalVolumes.projected.sources.secret.items

fn spec.additionalVolumes.projected.sources.secret.items.withKey

withKey(key)

fn spec.additionalVolumes.projected.sources.secret.items.withMode

withMode(mode)

fn spec.additionalVolumes.projected.sources.secret.items.withPath

withPath(path)

obj spec.additionalVolumes.projected.sources.serviceAccountToken

fn spec.additionalVolumes.projected.sources.serviceAccountToken.withAudience

withAudience(audience)

fn spec.additionalVolumes.projected.sources.serviceAccountToken.withExpirationSeconds

withExpirationSeconds(expirationSeconds)

fn spec.additionalVolumes.projected.sources.serviceAccountToken.withPath

withPath(path)

obj spec.additionalVolumes.quobyte

fn spec.additionalVolumes.quobyte.withGroup

withGroup(group)

fn spec.additionalVolumes.quobyte.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.quobyte.withRegistry

withRegistry(registry)

fn spec.additionalVolumes.quobyte.withTenant

withTenant(tenant)

fn spec.additionalVolumes.quobyte.withUser

withUser(user)

fn spec.additionalVolumes.quobyte.withVolume

withVolume(volume)

obj spec.additionalVolumes.rbd

fn spec.additionalVolumes.rbd.withFsType

withFsType(fsType)

fn spec.additionalVolumes.rbd.withImage

withImage(image)

fn spec.additionalVolumes.rbd.withKeyring

withKeyring(keyring)

fn spec.additionalVolumes.rbd.withMonitors

withMonitors(monitors)

fn spec.additionalVolumes.rbd.withMonitorsMixin

withMonitorsMixin(monitors)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.rbd.withPool

withPool(pool)

fn spec.additionalVolumes.rbd.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.rbd.withUser

withUser(user)

obj spec.additionalVolumes.rbd.secretRef

fn spec.additionalVolumes.rbd.secretRef.withName

withName(name)

obj spec.additionalVolumes.scaleIO

fn spec.additionalVolumes.scaleIO.withFsType

withFsType(fsType)

fn spec.additionalVolumes.scaleIO.withGateway

withGateway(gateway)

fn spec.additionalVolumes.scaleIO.withProtectionDomain

withProtectionDomain(protectionDomain)

fn spec.additionalVolumes.scaleIO.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.scaleIO.withSslEnabled

withSslEnabled(sslEnabled)

fn spec.additionalVolumes.scaleIO.withStorageMode

withStorageMode(storageMode)

fn spec.additionalVolumes.scaleIO.withStoragePool

withStoragePool(storagePool)

fn spec.additionalVolumes.scaleIO.withSystem

withSystem(system)

fn spec.additionalVolumes.scaleIO.withVolumeName

withVolumeName(volumeName)

obj spec.additionalVolumes.scaleIO.secretRef

fn spec.additionalVolumes.scaleIO.secretRef.withName

withName(name)

obj spec.additionalVolumes.secret

fn spec.additionalVolumes.secret.withDefaultMode

withDefaultMode(defaultMode)

fn spec.additionalVolumes.secret.withItems

withItems(items)

fn spec.additionalVolumes.secret.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.additionalVolumes.secret.withOptional

withOptional(optional)

fn spec.additionalVolumes.secret.withSecretName

withSecretName(secretName)

obj spec.additionalVolumes.secret.items

fn spec.additionalVolumes.secret.items.withKey

withKey(key)

fn spec.additionalVolumes.secret.items.withMode

withMode(mode)

fn spec.additionalVolumes.secret.items.withPath

withPath(path)

obj spec.additionalVolumes.storageos

fn spec.additionalVolumes.storageos.withFsType

withFsType(fsType)

fn spec.additionalVolumes.storageos.withReadOnly

withReadOnly(readOnly)

fn spec.additionalVolumes.storageos.withVolumeName

withVolumeName(volumeName)

fn spec.additionalVolumes.storageos.withVolumeNamespace

withVolumeNamespace(volumeNamespace)

obj spec.additionalVolumes.storageos.secretRef

fn spec.additionalVolumes.storageos.secretRef.withName

withName(name)

obj spec.additionalVolumes.vsphereVolume

fn spec.additionalVolumes.vsphereVolume.withFsType

withFsType(fsType)

fn spec.additionalVolumes.vsphereVolume.withStoragePolicyID

withStoragePolicyID(storagePolicyID)

fn spec.additionalVolumes.vsphereVolume.withStoragePolicyName

withStoragePolicyName(storagePolicyName)

fn spec.additionalVolumes.vsphereVolume.withVolumePath

withVolumePath(volumePath)

obj spec.buckets

fn spec.buckets.withName

withName(name)

fn spec.buckets.withObjectLock

withObjectLock(objectLock)

fn spec.buckets.withRegion

withRegion(region)

obj spec.certConfig

fn spec.certConfig.withCommonName

withCommonName(commonName)

fn spec.certConfig.withDnsNames

withDnsNames(dnsNames)

fn spec.certConfig.withDnsNamesMixin

withDnsNamesMixin(dnsNames)

Note: This function appends passed data to existing values

fn spec.certConfig.withOrganizationName

withOrganizationName(organizationName)

fn spec.certConfig.withOrganizationNameMixin

withOrganizationNameMixin(organizationName)

Note: This function appends passed data to existing values

obj spec.configuration

fn spec.configuration.withName

withName(name)

obj spec.credsSecret

fn spec.credsSecret.withName

withName(name)

obj spec.env

fn spec.env.withName

withName(name)

fn spec.env.withValue

withValue(value)

obj spec.env.valueFrom

obj spec.env.valueFrom.configMapKeyRef

fn spec.env.valueFrom.configMapKeyRef.withKey

withKey(key)

fn spec.env.valueFrom.configMapKeyRef.withName

withName(name)

fn spec.env.valueFrom.configMapKeyRef.withOptional

withOptional(optional)

obj spec.env.valueFrom.fieldRef

fn spec.env.valueFrom.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.env.valueFrom.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.env.valueFrom.resourceFieldRef

fn spec.env.valueFrom.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.env.valueFrom.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.env.valueFrom.resourceFieldRef.withResource

withResource(resource)

obj spec.env.valueFrom.secretKeyRef

fn spec.env.valueFrom.secretKeyRef.withKey

withKey(key)

fn spec.env.valueFrom.secretKeyRef.withName

withName(name)

fn spec.env.valueFrom.secretKeyRef.withOptional

withOptional(optional)

obj spec.exposeServices

fn spec.exposeServices.withConsole

withConsole(console)

fn spec.exposeServices.withMinio

withMinio(minio)

obj spec.externalCaCertSecret

fn spec.externalCaCertSecret.withName

withName(name)

fn spec.externalCaCertSecret.withType

withType(type)

obj spec.externalCertSecret

fn spec.externalCertSecret.withName

withName(name)

fn spec.externalCertSecret.withType

withType(type)

obj spec.externalClientCertSecret

fn spec.externalClientCertSecret.withName

withName(name)

fn spec.externalClientCertSecret.withType

withType(type)

obj spec.externalClientCertSecrets

fn spec.externalClientCertSecrets.withName

withName(name)

fn spec.externalClientCertSecrets.withType

withType(type)

obj spec.features

fn spec.features.withBucketDNS

withBucketDNS(bucketDNS)

fn spec.features.withEnableSFTP

withEnableSFTP(enableSFTP)

obj spec.features.domains

fn spec.features.domains.withConsole

withConsole(console)

fn spec.features.domains.withMinio

withMinio(minio)

fn spec.features.domains.withMinioMixin

withMinioMixin(minio)

Note: This function appends passed data to existing values

obj spec.imagePullSecret

fn spec.imagePullSecret.withName

withName(name)

obj spec.initContainers

fn spec.initContainers.withArgs

withArgs(args)

fn spec.initContainers.withArgsMixin

withArgsMixin(args)

Note: This function appends passed data to existing values

fn spec.initContainers.withCommand

withCommand(command)

fn spec.initContainers.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

fn spec.initContainers.withEnv

withEnv(env)

fn spec.initContainers.withEnvFrom

withEnvFrom(envFrom)

fn spec.initContainers.withEnvFromMixin

withEnvFromMixin(envFrom)

Note: This function appends passed data to existing values

fn spec.initContainers.withEnvMixin

withEnvMixin(env)

Note: This function appends passed data to existing values

fn spec.initContainers.withImage

withImage(image)

fn spec.initContainers.withImagePullPolicy

withImagePullPolicy(imagePullPolicy)

fn spec.initContainers.withName

withName(name)

fn spec.initContainers.withPorts

withPorts(ports)

fn spec.initContainers.withPortsMixin

withPortsMixin(ports)

Note: This function appends passed data to existing values

fn spec.initContainers.withResizePolicy

withResizePolicy(resizePolicy)

fn spec.initContainers.withResizePolicyMixin

withResizePolicyMixin(resizePolicy)

Note: This function appends passed data to existing values

fn spec.initContainers.withRestartPolicy

withRestartPolicy(restartPolicy)

fn spec.initContainers.withStdin

withStdin(stdin)

fn spec.initContainers.withStdinOnce

withStdinOnce(stdinOnce)

fn spec.initContainers.withTerminationMessagePath

withTerminationMessagePath(terminationMessagePath)

fn spec.initContainers.withTerminationMessagePolicy

withTerminationMessagePolicy(terminationMessagePolicy)

fn spec.initContainers.withTty

withTty(tty)

fn spec.initContainers.withVolumeDevices

withVolumeDevices(volumeDevices)

fn spec.initContainers.withVolumeDevicesMixin

withVolumeDevicesMixin(volumeDevices)

Note: This function appends passed data to existing values

fn spec.initContainers.withVolumeMounts

withVolumeMounts(volumeMounts)

fn spec.initContainers.withVolumeMountsMixin

withVolumeMountsMixin(volumeMounts)

Note: This function appends passed data to existing values

fn spec.initContainers.withWorkingDir

withWorkingDir(workingDir)

obj spec.initContainers.env

fn spec.initContainers.env.withName

withName(name)

fn spec.initContainers.env.withValue

withValue(value)

obj spec.initContainers.env.valueFrom

obj spec.initContainers.env.valueFrom.configMapKeyRef

fn spec.initContainers.env.valueFrom.configMapKeyRef.withKey

withKey(key)

fn spec.initContainers.env.valueFrom.configMapKeyRef.withName

withName(name)

fn spec.initContainers.env.valueFrom.configMapKeyRef.withOptional

withOptional(optional)

obj spec.initContainers.env.valueFrom.fieldRef

fn spec.initContainers.env.valueFrom.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.initContainers.env.valueFrom.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.initContainers.env.valueFrom.resourceFieldRef

fn spec.initContainers.env.valueFrom.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.initContainers.env.valueFrom.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.initContainers.env.valueFrom.resourceFieldRef.withResource

withResource(resource)

obj spec.initContainers.env.valueFrom.secretKeyRef

fn spec.initContainers.env.valueFrom.secretKeyRef.withKey

withKey(key)

fn spec.initContainers.env.valueFrom.secretKeyRef.withName

withName(name)

fn spec.initContainers.env.valueFrom.secretKeyRef.withOptional

withOptional(optional)

obj spec.initContainers.envFrom

fn spec.initContainers.envFrom.withPrefix

withPrefix(prefix)

obj spec.initContainers.envFrom.configMapRef

fn spec.initContainers.envFrom.configMapRef.withName

withName(name)

fn spec.initContainers.envFrom.configMapRef.withOptional

withOptional(optional)

obj spec.initContainers.envFrom.secretRef

fn spec.initContainers.envFrom.secretRef.withName

withName(name)

fn spec.initContainers.envFrom.secretRef.withOptional

withOptional(optional)

obj spec.initContainers.lifecycle

obj spec.initContainers.lifecycle.postStart

obj spec.initContainers.lifecycle.postStart.exec

fn spec.initContainers.lifecycle.postStart.exec.withCommand

withCommand(command)

fn spec.initContainers.lifecycle.postStart.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.initContainers.lifecycle.postStart.httpGet

fn spec.initContainers.lifecycle.postStart.httpGet.withHost

withHost(host)

fn spec.initContainers.lifecycle.postStart.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.initContainers.lifecycle.postStart.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.initContainers.lifecycle.postStart.httpGet.withPath

withPath(path)

fn spec.initContainers.lifecycle.postStart.httpGet.withPort

withPort(port)

fn spec.initContainers.lifecycle.postStart.httpGet.withScheme

withScheme(scheme)

obj spec.initContainers.lifecycle.postStart.httpGet.httpHeaders

fn spec.initContainers.lifecycle.postStart.httpGet.httpHeaders.withName

withName(name)

fn spec.initContainers.lifecycle.postStart.httpGet.httpHeaders.withValue

withValue(value)

obj spec.initContainers.lifecycle.postStart.sleep

fn spec.initContainers.lifecycle.postStart.sleep.withSeconds

withSeconds(seconds)

obj spec.initContainers.lifecycle.postStart.tcpSocket

fn spec.initContainers.lifecycle.postStart.tcpSocket.withHost

withHost(host)

fn spec.initContainers.lifecycle.postStart.tcpSocket.withPort

withPort(port)

obj spec.initContainers.lifecycle.preStop

obj spec.initContainers.lifecycle.preStop.exec

fn spec.initContainers.lifecycle.preStop.exec.withCommand

withCommand(command)

fn spec.initContainers.lifecycle.preStop.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.initContainers.lifecycle.preStop.httpGet

fn spec.initContainers.lifecycle.preStop.httpGet.withHost

withHost(host)

fn spec.initContainers.lifecycle.preStop.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.initContainers.lifecycle.preStop.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.initContainers.lifecycle.preStop.httpGet.withPath

withPath(path)

fn spec.initContainers.lifecycle.preStop.httpGet.withPort

withPort(port)

fn spec.initContainers.lifecycle.preStop.httpGet.withScheme

withScheme(scheme)

obj spec.initContainers.lifecycle.preStop.httpGet.httpHeaders

fn spec.initContainers.lifecycle.preStop.httpGet.httpHeaders.withName

withName(name)

fn spec.initContainers.lifecycle.preStop.httpGet.httpHeaders.withValue

withValue(value)

obj spec.initContainers.lifecycle.preStop.sleep

fn spec.initContainers.lifecycle.preStop.sleep.withSeconds

withSeconds(seconds)

obj spec.initContainers.lifecycle.preStop.tcpSocket

fn spec.initContainers.lifecycle.preStop.tcpSocket.withHost

withHost(host)

fn spec.initContainers.lifecycle.preStop.tcpSocket.withPort

withPort(port)

obj spec.initContainers.livenessProbe

fn spec.initContainers.livenessProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.initContainers.livenessProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.initContainers.livenessProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.initContainers.livenessProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.initContainers.livenessProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.initContainers.livenessProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.initContainers.livenessProbe.exec

fn spec.initContainers.livenessProbe.exec.withCommand

withCommand(command)

fn spec.initContainers.livenessProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.initContainers.livenessProbe.grpc

fn spec.initContainers.livenessProbe.grpc.withPort

withPort(port)

fn spec.initContainers.livenessProbe.grpc.withService

withService(service)

obj spec.initContainers.livenessProbe.httpGet

fn spec.initContainers.livenessProbe.httpGet.withHost

withHost(host)

fn spec.initContainers.livenessProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.initContainers.livenessProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.initContainers.livenessProbe.httpGet.withPath

withPath(path)

fn spec.initContainers.livenessProbe.httpGet.withPort

withPort(port)

fn spec.initContainers.livenessProbe.httpGet.withScheme

withScheme(scheme)

obj spec.initContainers.livenessProbe.httpGet.httpHeaders

fn spec.initContainers.livenessProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.initContainers.livenessProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.initContainers.livenessProbe.tcpSocket

fn spec.initContainers.livenessProbe.tcpSocket.withHost

withHost(host)

fn spec.initContainers.livenessProbe.tcpSocket.withPort

withPort(port)

obj spec.initContainers.ports

fn spec.initContainers.ports.withContainerPort

withContainerPort(containerPort)

fn spec.initContainers.ports.withHostIP

withHostIP(hostIP)

fn spec.initContainers.ports.withHostPort

withHostPort(hostPort)

fn spec.initContainers.ports.withName

withName(name)

fn spec.initContainers.ports.withProtocol

withProtocol(protocol)

obj spec.initContainers.readinessProbe

fn spec.initContainers.readinessProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.initContainers.readinessProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.initContainers.readinessProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.initContainers.readinessProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.initContainers.readinessProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.initContainers.readinessProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.initContainers.readinessProbe.exec

fn spec.initContainers.readinessProbe.exec.withCommand

withCommand(command)

fn spec.initContainers.readinessProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.initContainers.readinessProbe.grpc

fn spec.initContainers.readinessProbe.grpc.withPort

withPort(port)

fn spec.initContainers.readinessProbe.grpc.withService

withService(service)

obj spec.initContainers.readinessProbe.httpGet

fn spec.initContainers.readinessProbe.httpGet.withHost

withHost(host)

fn spec.initContainers.readinessProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.initContainers.readinessProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.initContainers.readinessProbe.httpGet.withPath

withPath(path)

fn spec.initContainers.readinessProbe.httpGet.withPort

withPort(port)

fn spec.initContainers.readinessProbe.httpGet.withScheme

withScheme(scheme)

obj spec.initContainers.readinessProbe.httpGet.httpHeaders

fn spec.initContainers.readinessProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.initContainers.readinessProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.initContainers.readinessProbe.tcpSocket

fn spec.initContainers.readinessProbe.tcpSocket.withHost

withHost(host)

fn spec.initContainers.readinessProbe.tcpSocket.withPort

withPort(port)

obj spec.initContainers.resizePolicy

fn spec.initContainers.resizePolicy.withResourceName

withResourceName(resourceName)

fn spec.initContainers.resizePolicy.withRestartPolicy

withRestartPolicy(restartPolicy)

obj spec.initContainers.resources

fn spec.initContainers.resources.withClaims

withClaims(claims)

fn spec.initContainers.resources.withClaimsMixin

withClaimsMixin(claims)

Note: This function appends passed data to existing values

fn spec.initContainers.resources.withLimits

withLimits(limits)

fn spec.initContainers.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.initContainers.resources.withRequests

withRequests(requests)

fn spec.initContainers.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.initContainers.resources.claims

fn spec.initContainers.resources.claims.withName

withName(name)

obj spec.initContainers.securityContext

fn spec.initContainers.securityContext.withAllowPrivilegeEscalation

withAllowPrivilegeEscalation(allowPrivilegeEscalation)

fn spec.initContainers.securityContext.withPrivileged

withPrivileged(privileged)

fn spec.initContainers.securityContext.withProcMount

withProcMount(procMount)

fn spec.initContainers.securityContext.withReadOnlyRootFilesystem

withReadOnlyRootFilesystem(readOnlyRootFilesystem)

fn spec.initContainers.securityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.initContainers.securityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.initContainers.securityContext.withRunAsUser

withRunAsUser(runAsUser)

obj spec.initContainers.securityContext.capabilities

fn spec.initContainers.securityContext.capabilities.withAdd

withAdd(add)

fn spec.initContainers.securityContext.capabilities.withAddMixin

withAddMixin(add)

Note: This function appends passed data to existing values

fn spec.initContainers.securityContext.capabilities.withDrop

withDrop(drop)

fn spec.initContainers.securityContext.capabilities.withDropMixin

withDropMixin(drop)

Note: This function appends passed data to existing values

obj spec.initContainers.securityContext.seLinuxOptions

fn spec.initContainers.securityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.initContainers.securityContext.seLinuxOptions.withRole

withRole(role)

fn spec.initContainers.securityContext.seLinuxOptions.withType

withType(type)

fn spec.initContainers.securityContext.seLinuxOptions.withUser

withUser(user)

obj spec.initContainers.securityContext.seccompProfile

fn spec.initContainers.securityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.initContainers.securityContext.seccompProfile.withType

withType(type)

obj spec.initContainers.securityContext.windowsOptions

fn spec.initContainers.securityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.initContainers.securityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.initContainers.securityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.initContainers.securityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.initContainers.startupProbe

fn spec.initContainers.startupProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.initContainers.startupProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.initContainers.startupProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.initContainers.startupProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.initContainers.startupProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.initContainers.startupProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.initContainers.startupProbe.exec

fn spec.initContainers.startupProbe.exec.withCommand

withCommand(command)

fn spec.initContainers.startupProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.initContainers.startupProbe.grpc

fn spec.initContainers.startupProbe.grpc.withPort

withPort(port)

fn spec.initContainers.startupProbe.grpc.withService

withService(service)

obj spec.initContainers.startupProbe.httpGet

fn spec.initContainers.startupProbe.httpGet.withHost

withHost(host)

fn spec.initContainers.startupProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.initContainers.startupProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.initContainers.startupProbe.httpGet.withPath

withPath(path)

fn spec.initContainers.startupProbe.httpGet.withPort

withPort(port)

fn spec.initContainers.startupProbe.httpGet.withScheme

withScheme(scheme)

obj spec.initContainers.startupProbe.httpGet.httpHeaders

fn spec.initContainers.startupProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.initContainers.startupProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.initContainers.startupProbe.tcpSocket

fn spec.initContainers.startupProbe.tcpSocket.withHost

withHost(host)

fn spec.initContainers.startupProbe.tcpSocket.withPort

withPort(port)

obj spec.initContainers.volumeDevices

fn spec.initContainers.volumeDevices.withDevicePath

withDevicePath(devicePath)

fn spec.initContainers.volumeDevices.withName

withName(name)

obj spec.initContainers.volumeMounts

fn spec.initContainers.volumeMounts.withMountPath

withMountPath(mountPath)

fn spec.initContainers.volumeMounts.withMountPropagation

withMountPropagation(mountPropagation)

fn spec.initContainers.volumeMounts.withName

withName(name)

fn spec.initContainers.volumeMounts.withReadOnly

withReadOnly(readOnly)

fn spec.initContainers.volumeMounts.withSubPath

withSubPath(subPath)

fn spec.initContainers.volumeMounts.withSubPathExpr

withSubPathExpr(subPathExpr)

obj spec.kes

fn spec.kes.withAnnotations

withAnnotations(annotations)

fn spec.kes.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.kes.withEnv

withEnv(env)

fn spec.kes.withEnvMixin

withEnvMixin(env)

Note: This function appends passed data to existing values

fn spec.kes.withGcpCredentialSecretName

withGcpCredentialSecretName(gcpCredentialSecretName)

fn spec.kes.withGcpWorkloadIdentityPool

withGcpWorkloadIdentityPool(gcpWorkloadIdentityPool)

fn spec.kes.withImage

withImage(image)

fn spec.kes.withImagePullPolicy

withImagePullPolicy(imagePullPolicy)

fn spec.kes.withKeyName

withKeyName(keyName)

fn spec.kes.withLabels

withLabels(labels)

fn spec.kes.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.kes.withNodeSelector

withNodeSelector(nodeSelector)

fn spec.kes.withNodeSelectorMixin

withNodeSelectorMixin(nodeSelector)

Note: This function appends passed data to existing values

fn spec.kes.withReplicas

withReplicas(replicas)

fn spec.kes.withServiceAccountName

withServiceAccountName(serviceAccountName)

fn spec.kes.withTolerations

withTolerations(tolerations)

fn spec.kes.withTolerationsMixin

withTolerationsMixin(tolerations)

Note: This function appends passed data to existing values

fn spec.kes.withTopologySpreadConstraints

withTopologySpreadConstraints(topologySpreadConstraints)

fn spec.kes.withTopologySpreadConstraintsMixin

withTopologySpreadConstraintsMixin(topologySpreadConstraints)

Note: This function appends passed data to existing values

obj spec.kes.affinity

obj spec.kes.affinity.nodeAffinity

fn spec.kes.affinity.nodeAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.kes.affinity.nodeAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchFields

withMatchFields(matchFields)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchFieldsMixin

withMatchFieldsMixin(matchFields)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withKey

withKey(key)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withOperator

withOperator(operator)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withValues

withValues(values)

fn spec.kes.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNodeSelectorTerms

withNodeSelectorTerms(nodeSelectorTerms)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNodeSelectorTermsMixin

withNodeSelectorTermsMixin(nodeSelectorTerms)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchFields

withMatchFields(matchFields)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchFieldsMixin

withMatchFieldsMixin(matchFields)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withKey

withKey(key)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withOperator

withOperator(operator)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withValues

withValues(values)

fn spec.kes.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity

fn spec.kes.affinity.podAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.kes.affinity.podAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.withRequiredDuringSchedulingIgnoredDuringExecution

withRequiredDuringSchedulingIgnoredDuringExecution(requiredDuringSchedulingIgnoredDuringExecution)

fn spec.kes.affinity.podAffinity.withRequiredDuringSchedulingIgnoredDuringExecutionMixin

withRequiredDuringSchedulingIgnoredDuringExecutionMixin(requiredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespaces

withNamespaces(namespaces)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withTopologyKey

withTopologyKey(topologyKey)

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespaces

withNamespaces(namespaces)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withTopologyKey

withTopologyKey(topologyKey)

obj spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity

fn spec.kes.affinity.podAntiAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.kes.affinity.podAntiAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.withRequiredDuringSchedulingIgnoredDuringExecution

withRequiredDuringSchedulingIgnoredDuringExecution(requiredDuringSchedulingIgnoredDuringExecution)

fn spec.kes.affinity.podAntiAffinity.withRequiredDuringSchedulingIgnoredDuringExecutionMixin

withRequiredDuringSchedulingIgnoredDuringExecutionMixin(requiredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespaces

withNamespaces(namespaces)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withTopologyKey

withTopologyKey(topologyKey)

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespaces

withNamespaces(namespaces)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withTopologyKey

withTopologyKey(topologyKey)

obj spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.kes.clientCertSecret

fn spec.kes.clientCertSecret.withName

withName(name)

fn spec.kes.clientCertSecret.withType

withType(type)

obj spec.kes.containerSecurityContext

fn spec.kes.containerSecurityContext.withAllowPrivilegeEscalation

withAllowPrivilegeEscalation(allowPrivilegeEscalation)

fn spec.kes.containerSecurityContext.withPrivileged

withPrivileged(privileged)

fn spec.kes.containerSecurityContext.withProcMount

withProcMount(procMount)

fn spec.kes.containerSecurityContext.withReadOnlyRootFilesystem

withReadOnlyRootFilesystem(readOnlyRootFilesystem)

fn spec.kes.containerSecurityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.kes.containerSecurityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.kes.containerSecurityContext.withRunAsUser

withRunAsUser(runAsUser)

obj spec.kes.containerSecurityContext.capabilities

fn spec.kes.containerSecurityContext.capabilities.withAdd

withAdd(add)

fn spec.kes.containerSecurityContext.capabilities.withAddMixin

withAddMixin(add)

Note: This function appends passed data to existing values

fn spec.kes.containerSecurityContext.capabilities.withDrop

withDrop(drop)

fn spec.kes.containerSecurityContext.capabilities.withDropMixin

withDropMixin(drop)

Note: This function appends passed data to existing values

obj spec.kes.containerSecurityContext.seLinuxOptions

fn spec.kes.containerSecurityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.kes.containerSecurityContext.seLinuxOptions.withRole

withRole(role)

fn spec.kes.containerSecurityContext.seLinuxOptions.withType

withType(type)

fn spec.kes.containerSecurityContext.seLinuxOptions.withUser

withUser(user)

obj spec.kes.containerSecurityContext.seccompProfile

fn spec.kes.containerSecurityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.kes.containerSecurityContext.seccompProfile.withType

withType(type)

obj spec.kes.containerSecurityContext.windowsOptions

fn spec.kes.containerSecurityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.kes.containerSecurityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.kes.containerSecurityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.kes.containerSecurityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.kes.env

fn spec.kes.env.withName

withName(name)

fn spec.kes.env.withValue

withValue(value)

obj spec.kes.env.valueFrom

obj spec.kes.env.valueFrom.configMapKeyRef

fn spec.kes.env.valueFrom.configMapKeyRef.withKey

withKey(key)

fn spec.kes.env.valueFrom.configMapKeyRef.withName

withName(name)

fn spec.kes.env.valueFrom.configMapKeyRef.withOptional

withOptional(optional)

obj spec.kes.env.valueFrom.fieldRef

fn spec.kes.env.valueFrom.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.kes.env.valueFrom.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.kes.env.valueFrom.resourceFieldRef

fn spec.kes.env.valueFrom.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.kes.env.valueFrom.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.kes.env.valueFrom.resourceFieldRef.withResource

withResource(resource)

obj spec.kes.env.valueFrom.secretKeyRef

fn spec.kes.env.valueFrom.secretKeyRef.withKey

withKey(key)

fn spec.kes.env.valueFrom.secretKeyRef.withName

withName(name)

fn spec.kes.env.valueFrom.secretKeyRef.withOptional

withOptional(optional)

obj spec.kes.externalCertSecret

fn spec.kes.externalCertSecret.withName

withName(name)

fn spec.kes.externalCertSecret.withType

withType(type)

obj spec.kes.kesSecret

fn spec.kes.kesSecret.withName

withName(name)

obj spec.kes.resources

fn spec.kes.resources.withClaims

withClaims(claims)

fn spec.kes.resources.withClaimsMixin

withClaimsMixin(claims)

Note: This function appends passed data to existing values

fn spec.kes.resources.withLimits

withLimits(limits)

fn spec.kes.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.kes.resources.withRequests

withRequests(requests)

fn spec.kes.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.kes.resources.claims

fn spec.kes.resources.claims.withName

withName(name)

obj spec.kes.securityContext

fn spec.kes.securityContext.withFsGroup

withFsGroup(fsGroup)

fn spec.kes.securityContext.withFsGroupChangePolicy

withFsGroupChangePolicy(fsGroupChangePolicy)

fn spec.kes.securityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.kes.securityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.kes.securityContext.withRunAsUser

withRunAsUser(runAsUser)

fn spec.kes.securityContext.withSupplementalGroups

withSupplementalGroups(supplementalGroups)

fn spec.kes.securityContext.withSupplementalGroupsMixin

withSupplementalGroupsMixin(supplementalGroups)

Note: This function appends passed data to existing values

fn spec.kes.securityContext.withSysctls

withSysctls(sysctls)

fn spec.kes.securityContext.withSysctlsMixin

withSysctlsMixin(sysctls)

Note: This function appends passed data to existing values

obj spec.kes.securityContext.seLinuxOptions

fn spec.kes.securityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.kes.securityContext.seLinuxOptions.withRole

withRole(role)

fn spec.kes.securityContext.seLinuxOptions.withType

withType(type)

fn spec.kes.securityContext.seLinuxOptions.withUser

withUser(user)

obj spec.kes.securityContext.seccompProfile

fn spec.kes.securityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.kes.securityContext.seccompProfile.withType

withType(type)

obj spec.kes.securityContext.sysctls

fn spec.kes.securityContext.sysctls.withName

withName(name)

fn spec.kes.securityContext.sysctls.withValue

withValue(value)

obj spec.kes.securityContext.windowsOptions

fn spec.kes.securityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.kes.securityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.kes.securityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.kes.securityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.kes.tolerations

fn spec.kes.tolerations.withEffect

withEffect(effect)

fn spec.kes.tolerations.withKey

withKey(key)

fn spec.kes.tolerations.withOperator

withOperator(operator)

fn spec.kes.tolerations.withTolerationSeconds

withTolerationSeconds(tolerationSeconds)

fn spec.kes.tolerations.withValue

withValue(value)

obj spec.kes.topologySpreadConstraints

fn spec.kes.topologySpreadConstraints.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.kes.topologySpreadConstraints.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.kes.topologySpreadConstraints.withMaxSkew

withMaxSkew(maxSkew)

fn spec.kes.topologySpreadConstraints.withMinDomains

withMinDomains(minDomains)

fn spec.kes.topologySpreadConstraints.withNodeAffinityPolicy

withNodeAffinityPolicy(nodeAffinityPolicy)

fn spec.kes.topologySpreadConstraints.withNodeTaintsPolicy

withNodeTaintsPolicy(nodeTaintsPolicy)

fn spec.kes.topologySpreadConstraints.withTopologyKey

withTopologyKey(topologyKey)

fn spec.kes.topologySpreadConstraints.withWhenUnsatisfiable

withWhenUnsatisfiable(whenUnsatisfiable)

obj spec.kes.topologySpreadConstraints.labelSelector

fn spec.kes.topologySpreadConstraints.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.kes.topologySpreadConstraints.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.kes.topologySpreadConstraints.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.kes.topologySpreadConstraints.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.kes.topologySpreadConstraints.labelSelector.matchExpressions

fn spec.kes.topologySpreadConstraints.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.kes.topologySpreadConstraints.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.kes.topologySpreadConstraints.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.kes.topologySpreadConstraints.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.lifecycle

obj spec.lifecycle.postStart

obj spec.lifecycle.postStart.exec

fn spec.lifecycle.postStart.exec.withCommand

withCommand(command)

fn spec.lifecycle.postStart.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.lifecycle.postStart.httpGet

fn spec.lifecycle.postStart.httpGet.withHost

withHost(host)

fn spec.lifecycle.postStart.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.lifecycle.postStart.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.lifecycle.postStart.httpGet.withPath

withPath(path)

fn spec.lifecycle.postStart.httpGet.withPort

withPort(port)

fn spec.lifecycle.postStart.httpGet.withScheme

withScheme(scheme)

obj spec.lifecycle.postStart.httpGet.httpHeaders

fn spec.lifecycle.postStart.httpGet.httpHeaders.withName

withName(name)

fn spec.lifecycle.postStart.httpGet.httpHeaders.withValue

withValue(value)

obj spec.lifecycle.postStart.tcpSocket

fn spec.lifecycle.postStart.tcpSocket.withHost

withHost(host)

fn spec.lifecycle.postStart.tcpSocket.withPort

withPort(port)

obj spec.lifecycle.preStop

obj spec.lifecycle.preStop.exec

fn spec.lifecycle.preStop.exec.withCommand

withCommand(command)

fn spec.lifecycle.preStop.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.lifecycle.preStop.httpGet

fn spec.lifecycle.preStop.httpGet.withHost

withHost(host)

fn spec.lifecycle.preStop.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.lifecycle.preStop.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.lifecycle.preStop.httpGet.withPath

withPath(path)

fn spec.lifecycle.preStop.httpGet.withPort

withPort(port)

fn spec.lifecycle.preStop.httpGet.withScheme

withScheme(scheme)

obj spec.lifecycle.preStop.httpGet.httpHeaders

fn spec.lifecycle.preStop.httpGet.httpHeaders.withName

withName(name)

fn spec.lifecycle.preStop.httpGet.httpHeaders.withValue

withValue(value)

obj spec.lifecycle.preStop.tcpSocket

fn spec.lifecycle.preStop.tcpSocket.withHost

withHost(host)

fn spec.lifecycle.preStop.tcpSocket.withPort

withPort(port)

obj spec.liveness

fn spec.liveness.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.liveness.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.liveness.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.liveness.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.liveness.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.liveness.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.liveness.exec

fn spec.liveness.exec.withCommand

withCommand(command)

fn spec.liveness.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.liveness.grpc

fn spec.liveness.grpc.withPort

withPort(port)

fn spec.liveness.grpc.withService

withService(service)

obj spec.liveness.httpGet

fn spec.liveness.httpGet.withHost

withHost(host)

fn spec.liveness.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.liveness.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.liveness.httpGet.withPath

withPath(path)

fn spec.liveness.httpGet.withPort

withPort(port)

fn spec.liveness.httpGet.withScheme

withScheme(scheme)

obj spec.liveness.httpGet.httpHeaders

fn spec.liveness.httpGet.httpHeaders.withName

withName(name)

fn spec.liveness.httpGet.httpHeaders.withValue

withValue(value)

obj spec.liveness.tcpSocket

fn spec.liveness.tcpSocket.withHost

withHost(host)

fn spec.liveness.tcpSocket.withPort

withPort(port)

obj spec.logging

fn spec.logging.withAnonymous

withAnonymous(anonymous)

fn spec.logging.withJson

withJson(json)

fn spec.logging.withQuiet

withQuiet(quiet)

obj spec.pools

fn spec.pools.withAnnotations

withAnnotations(annotations)

fn spec.pools.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.pools.withLabels

withLabels(labels)

fn spec.pools.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.pools.withName

withName(name)

fn spec.pools.withNodeSelector

withNodeSelector(nodeSelector)

fn spec.pools.withNodeSelectorMixin

withNodeSelectorMixin(nodeSelector)

Note: This function appends passed data to existing values

fn spec.pools.withReclaimStorage

withReclaimStorage(reclaimStorage)

fn spec.pools.withRuntimeClassName

withRuntimeClassName(runtimeClassName)

fn spec.pools.withServers

withServers(servers)

fn spec.pools.withTolerations

withTolerations(tolerations)

fn spec.pools.withTolerationsMixin

withTolerationsMixin(tolerations)

Note: This function appends passed data to existing values

fn spec.pools.withTopologySpreadConstraints

withTopologySpreadConstraints(topologySpreadConstraints)

fn spec.pools.withTopologySpreadConstraintsMixin

withTopologySpreadConstraintsMixin(topologySpreadConstraints)

Note: This function appends passed data to existing values

fn spec.pools.withVolumesPerServer

withVolumesPerServer(volumesPerServer)

obj spec.pools.affinity

obj spec.pools.affinity.nodeAffinity

fn spec.pools.affinity.nodeAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.pools.affinity.nodeAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchFields

withMatchFields(matchFields)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.withMatchFieldsMixin

withMatchFieldsMixin(matchFields)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withKey

withKey(key)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withOperator

withOperator(operator)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withValues

withValues(values)

fn spec.pools.affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution.preference.matchFields.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNodeSelectorTerms

withNodeSelectorTerms(nodeSelectorTerms)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNodeSelectorTermsMixin

withNodeSelectorTermsMixin(nodeSelectorTerms)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchFields

withMatchFields(matchFields)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.withMatchFieldsMixin

withMatchFieldsMixin(matchFields)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withKey

withKey(key)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withOperator

withOperator(operator)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withValues

withValues(values)

fn spec.pools.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.matchFields.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity

fn spec.pools.affinity.podAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.pools.affinity.podAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.withRequiredDuringSchedulingIgnoredDuringExecution

withRequiredDuringSchedulingIgnoredDuringExecution(requiredDuringSchedulingIgnoredDuringExecution)

fn spec.pools.affinity.podAffinity.withRequiredDuringSchedulingIgnoredDuringExecutionMixin

withRequiredDuringSchedulingIgnoredDuringExecutionMixin(requiredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespaces

withNamespaces(namespaces)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withTopologyKey

withTopologyKey(topologyKey)

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespaces

withNamespaces(namespaces)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.withTopologyKey

withTopologyKey(topologyKey)

obj spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity

fn spec.pools.affinity.podAntiAffinity.withPreferredDuringSchedulingIgnoredDuringExecution

withPreferredDuringSchedulingIgnoredDuringExecution(preferredDuringSchedulingIgnoredDuringExecution)

fn spec.pools.affinity.podAntiAffinity.withPreferredDuringSchedulingIgnoredDuringExecutionMixin

withPreferredDuringSchedulingIgnoredDuringExecutionMixin(preferredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.withRequiredDuringSchedulingIgnoredDuringExecution

withRequiredDuringSchedulingIgnoredDuringExecution(requiredDuringSchedulingIgnoredDuringExecution)

fn spec.pools.affinity.podAntiAffinity.withRequiredDuringSchedulingIgnoredDuringExecutionMixin

withRequiredDuringSchedulingIgnoredDuringExecutionMixin(requiredDuringSchedulingIgnoredDuringExecution)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.withWeight

withWeight(weight)

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespaces

withNamespaces(namespaces)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.withTopologyKey

withTopologyKey(topologyKey)

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution.podAffinityTerm.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeys

withMismatchLabelKeys(mismatchLabelKeys)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withMismatchLabelKeysMixin

withMismatchLabelKeysMixin(mismatchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespaces

withNamespaces(namespaces)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withNamespacesMixin

withNamespacesMixin(namespaces)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.withTopologyKey

withTopologyKey(topologyKey)

obj spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution.namespaceSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.containerSecurityContext

fn spec.pools.containerSecurityContext.withAllowPrivilegeEscalation

withAllowPrivilegeEscalation(allowPrivilegeEscalation)

fn spec.pools.containerSecurityContext.withPrivileged

withPrivileged(privileged)

fn spec.pools.containerSecurityContext.withProcMount

withProcMount(procMount)

fn spec.pools.containerSecurityContext.withReadOnlyRootFilesystem

withReadOnlyRootFilesystem(readOnlyRootFilesystem)

fn spec.pools.containerSecurityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.pools.containerSecurityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.pools.containerSecurityContext.withRunAsUser

withRunAsUser(runAsUser)

obj spec.pools.containerSecurityContext.capabilities

fn spec.pools.containerSecurityContext.capabilities.withAdd

withAdd(add)

fn spec.pools.containerSecurityContext.capabilities.withAddMixin

withAddMixin(add)

Note: This function appends passed data to existing values

fn spec.pools.containerSecurityContext.capabilities.withDrop

withDrop(drop)

fn spec.pools.containerSecurityContext.capabilities.withDropMixin

withDropMixin(drop)

Note: This function appends passed data to existing values

obj spec.pools.containerSecurityContext.seLinuxOptions

fn spec.pools.containerSecurityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.pools.containerSecurityContext.seLinuxOptions.withRole

withRole(role)

fn spec.pools.containerSecurityContext.seLinuxOptions.withType

withType(type)

fn spec.pools.containerSecurityContext.seLinuxOptions.withUser

withUser(user)

obj spec.pools.containerSecurityContext.seccompProfile

fn spec.pools.containerSecurityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.pools.containerSecurityContext.seccompProfile.withType

withType(type)

obj spec.pools.containerSecurityContext.windowsOptions

fn spec.pools.containerSecurityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.pools.containerSecurityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.pools.containerSecurityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.pools.containerSecurityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.pools.resources

fn spec.pools.resources.withClaims

withClaims(claims)

fn spec.pools.resources.withClaimsMixin

withClaimsMixin(claims)

Note: This function appends passed data to existing values

fn spec.pools.resources.withLimits

withLimits(limits)

fn spec.pools.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.pools.resources.withRequests

withRequests(requests)

fn spec.pools.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.pools.resources.claims

fn spec.pools.resources.claims.withName

withName(name)

obj spec.pools.securityContext

fn spec.pools.securityContext.withFsGroup

withFsGroup(fsGroup)

fn spec.pools.securityContext.withFsGroupChangePolicy

withFsGroupChangePolicy(fsGroupChangePolicy)

fn spec.pools.securityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.pools.securityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.pools.securityContext.withRunAsUser

withRunAsUser(runAsUser)

fn spec.pools.securityContext.withSupplementalGroups

withSupplementalGroups(supplementalGroups)

fn spec.pools.securityContext.withSupplementalGroupsMixin

withSupplementalGroupsMixin(supplementalGroups)

Note: This function appends passed data to existing values

fn spec.pools.securityContext.withSysctls

withSysctls(sysctls)

fn spec.pools.securityContext.withSysctlsMixin

withSysctlsMixin(sysctls)

Note: This function appends passed data to existing values

obj spec.pools.securityContext.seLinuxOptions

fn spec.pools.securityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.pools.securityContext.seLinuxOptions.withRole

withRole(role)

fn spec.pools.securityContext.seLinuxOptions.withType

withType(type)

fn spec.pools.securityContext.seLinuxOptions.withUser

withUser(user)

obj spec.pools.securityContext.seccompProfile

fn spec.pools.securityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.pools.securityContext.seccompProfile.withType

withType(type)

obj spec.pools.securityContext.sysctls

fn spec.pools.securityContext.sysctls.withName

withName(name)

fn spec.pools.securityContext.sysctls.withValue

withValue(value)

obj spec.pools.securityContext.windowsOptions

fn spec.pools.securityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.pools.securityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.pools.securityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.pools.securityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.pools.tolerations

fn spec.pools.tolerations.withEffect

withEffect(effect)

fn spec.pools.tolerations.withKey

withKey(key)

fn spec.pools.tolerations.withOperator

withOperator(operator)

fn spec.pools.tolerations.withTolerationSeconds

withTolerationSeconds(tolerationSeconds)

fn spec.pools.tolerations.withValue

withValue(value)

obj spec.pools.topologySpreadConstraints

fn spec.pools.topologySpreadConstraints.withMatchLabelKeys

withMatchLabelKeys(matchLabelKeys)

fn spec.pools.topologySpreadConstraints.withMatchLabelKeysMixin

withMatchLabelKeysMixin(matchLabelKeys)

Note: This function appends passed data to existing values

fn spec.pools.topologySpreadConstraints.withMaxSkew

withMaxSkew(maxSkew)

fn spec.pools.topologySpreadConstraints.withMinDomains

withMinDomains(minDomains)

fn spec.pools.topologySpreadConstraints.withNodeAffinityPolicy

withNodeAffinityPolicy(nodeAffinityPolicy)

fn spec.pools.topologySpreadConstraints.withNodeTaintsPolicy

withNodeTaintsPolicy(nodeTaintsPolicy)

fn spec.pools.topologySpreadConstraints.withTopologyKey

withTopologyKey(topologyKey)

fn spec.pools.topologySpreadConstraints.withWhenUnsatisfiable

withWhenUnsatisfiable(whenUnsatisfiable)

obj spec.pools.topologySpreadConstraints.labelSelector

fn spec.pools.topologySpreadConstraints.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.topologySpreadConstraints.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.topologySpreadConstraints.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.topologySpreadConstraints.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.topologySpreadConstraints.labelSelector.matchExpressions

fn spec.pools.topologySpreadConstraints.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.pools.topologySpreadConstraints.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.topologySpreadConstraints.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.pools.topologySpreadConstraints.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.pools.volumeClaimTemplate

fn spec.pools.volumeClaimTemplate.withApiVersion

withApiVersion(apiVersion)

fn spec.pools.volumeClaimTemplate.withKind

withKind(kind)

obj spec.pools.volumeClaimTemplate.metadata

fn spec.pools.volumeClaimTemplate.metadata.withAnnotations

withAnnotations(annotations)

fn spec.pools.volumeClaimTemplate.metadata.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.metadata.withFinalizers

withFinalizers(finalizers)

fn spec.pools.volumeClaimTemplate.metadata.withFinalizersMixin

withFinalizersMixin(finalizers)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.metadata.withLabels

withLabels(labels)

fn spec.pools.volumeClaimTemplate.metadata.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.metadata.withName

withName(name)

fn spec.pools.volumeClaimTemplate.metadata.withNamespace

withNamespace(namespace)

obj spec.pools.volumeClaimTemplate.spec

fn spec.pools.volumeClaimTemplate.spec.withAccessModes

withAccessModes(accessModes)

fn spec.pools.volumeClaimTemplate.spec.withAccessModesMixin

withAccessModesMixin(accessModes)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.spec.withStorageClassName

withStorageClassName(storageClassName)

fn spec.pools.volumeClaimTemplate.spec.withVolumeAttributesClassName

withVolumeAttributesClassName(volumeAttributesClassName)

fn spec.pools.volumeClaimTemplate.spec.withVolumeMode

withVolumeMode(volumeMode)

fn spec.pools.volumeClaimTemplate.spec.withVolumeName

withVolumeName(volumeName)

obj spec.pools.volumeClaimTemplate.spec.dataSource

fn spec.pools.volumeClaimTemplate.spec.dataSource.withApiGroup

withApiGroup(apiGroup)

fn spec.pools.volumeClaimTemplate.spec.dataSource.withKind

withKind(kind)

fn spec.pools.volumeClaimTemplate.spec.dataSource.withName

withName(name)

obj spec.pools.volumeClaimTemplate.spec.dataSourceRef

fn spec.pools.volumeClaimTemplate.spec.dataSourceRef.withApiGroup

withApiGroup(apiGroup)

fn spec.pools.volumeClaimTemplate.spec.dataSourceRef.withKind

withKind(kind)

fn spec.pools.volumeClaimTemplate.spec.dataSourceRef.withName

withName(name)

fn spec.pools.volumeClaimTemplate.spec.dataSourceRef.withNamespace

withNamespace(namespace)

obj spec.pools.volumeClaimTemplate.spec.resources

fn spec.pools.volumeClaimTemplate.spec.resources.withLimits

withLimits(limits)

fn spec.pools.volumeClaimTemplate.spec.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.spec.resources.withRequests

withRequests(requests)

fn spec.pools.volumeClaimTemplate.spec.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.pools.volumeClaimTemplate.spec.selector

fn spec.pools.volumeClaimTemplate.spec.selector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.pools.volumeClaimTemplate.spec.selector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.pools.volumeClaimTemplate.spec.selector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.pools.volumeClaimTemplate.spec.selector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.pools.volumeClaimTemplate.spec.selector.matchExpressions

fn spec.pools.volumeClaimTemplate.spec.selector.matchExpressions.withKey

withKey(key)

fn spec.pools.volumeClaimTemplate.spec.selector.matchExpressions.withOperator

withOperator(operator)

fn spec.pools.volumeClaimTemplate.spec.selector.matchExpressions.withValues

withValues(values)

fn spec.pools.volumeClaimTemplate.spec.selector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.readiness

fn spec.readiness.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.readiness.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.readiness.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.readiness.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.readiness.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.readiness.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.readiness.exec

fn spec.readiness.exec.withCommand

withCommand(command)

fn spec.readiness.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.readiness.grpc

fn spec.readiness.grpc.withPort

withPort(port)

fn spec.readiness.grpc.withService

withService(service)

obj spec.readiness.httpGet

fn spec.readiness.httpGet.withHost

withHost(host)

fn spec.readiness.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.readiness.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.readiness.httpGet.withPath

withPath(path)

fn spec.readiness.httpGet.withPort

withPort(port)

fn spec.readiness.httpGet.withScheme

withScheme(scheme)

obj spec.readiness.httpGet.httpHeaders

fn spec.readiness.httpGet.httpHeaders.withName

withName(name)

fn spec.readiness.httpGet.httpHeaders.withValue

withValue(value)

obj spec.readiness.tcpSocket

fn spec.readiness.tcpSocket.withHost

withHost(host)

fn spec.readiness.tcpSocket.withPort

withPort(port)

obj spec.serviceMetadata

fn spec.serviceMetadata.withConsoleServiceAnnotations

withConsoleServiceAnnotations(consoleServiceAnnotations)

fn spec.serviceMetadata.withConsoleServiceAnnotationsMixin

withConsoleServiceAnnotationsMixin(consoleServiceAnnotations)

Note: This function appends passed data to existing values

fn spec.serviceMetadata.withConsoleServiceLabels

withConsoleServiceLabels(consoleServiceLabels)

fn spec.serviceMetadata.withConsoleServiceLabelsMixin

withConsoleServiceLabelsMixin(consoleServiceLabels)

Note: This function appends passed data to existing values

fn spec.serviceMetadata.withMinioServiceAnnotations

withMinioServiceAnnotations(minioServiceAnnotations)

fn spec.serviceMetadata.withMinioServiceAnnotationsMixin

withMinioServiceAnnotationsMixin(minioServiceAnnotations)

Note: This function appends passed data to existing values

fn spec.serviceMetadata.withMinioServiceLabels

withMinioServiceLabels(minioServiceLabels)

fn spec.serviceMetadata.withMinioServiceLabelsMixin

withMinioServiceLabelsMixin(minioServiceLabels)

Note: This function appends passed data to existing values

obj spec.sideCars

fn spec.sideCars.withContainers

withContainers(containers)

fn spec.sideCars.withContainersMixin

withContainersMixin(containers)

Note: This function appends passed data to existing values

fn spec.sideCars.withVolumeClaimTemplates

withVolumeClaimTemplates(volumeClaimTemplates)

fn spec.sideCars.withVolumeClaimTemplatesMixin

withVolumeClaimTemplatesMixin(volumeClaimTemplates)

Note: This function appends passed data to existing values

fn spec.sideCars.withVolumes

withVolumes(volumes)

fn spec.sideCars.withVolumesMixin

withVolumesMixin(volumes)

Note: This function appends passed data to existing values

obj spec.sideCars.containers

fn spec.sideCars.containers.withArgs

withArgs(args)

fn spec.sideCars.containers.withArgsMixin

withArgsMixin(args)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withCommand

withCommand(command)

fn spec.sideCars.containers.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withEnv

withEnv(env)

fn spec.sideCars.containers.withEnvFrom

withEnvFrom(envFrom)

fn spec.sideCars.containers.withEnvFromMixin

withEnvFromMixin(envFrom)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withEnvMixin

withEnvMixin(env)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withImage

withImage(image)

fn spec.sideCars.containers.withImagePullPolicy

withImagePullPolicy(imagePullPolicy)

fn spec.sideCars.containers.withName

withName(name)

fn spec.sideCars.containers.withPorts

withPorts(ports)

fn spec.sideCars.containers.withPortsMixin

withPortsMixin(ports)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withResizePolicy

withResizePolicy(resizePolicy)

fn spec.sideCars.containers.withResizePolicyMixin

withResizePolicyMixin(resizePolicy)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withRestartPolicy

withRestartPolicy(restartPolicy)

fn spec.sideCars.containers.withStdin

withStdin(stdin)

fn spec.sideCars.containers.withStdinOnce

withStdinOnce(stdinOnce)

fn spec.sideCars.containers.withTerminationMessagePath

withTerminationMessagePath(terminationMessagePath)

fn spec.sideCars.containers.withTerminationMessagePolicy

withTerminationMessagePolicy(terminationMessagePolicy)

fn spec.sideCars.containers.withTty

withTty(tty)

fn spec.sideCars.containers.withVolumeDevices

withVolumeDevices(volumeDevices)

fn spec.sideCars.containers.withVolumeDevicesMixin

withVolumeDevicesMixin(volumeDevices)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withVolumeMounts

withVolumeMounts(volumeMounts)

fn spec.sideCars.containers.withVolumeMountsMixin

withVolumeMountsMixin(volumeMounts)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.withWorkingDir

withWorkingDir(workingDir)

obj spec.sideCars.containers.env

fn spec.sideCars.containers.env.withName

withName(name)

fn spec.sideCars.containers.env.withValue

withValue(value)

obj spec.sideCars.containers.env.valueFrom

obj spec.sideCars.containers.env.valueFrom.configMapKeyRef

fn spec.sideCars.containers.env.valueFrom.configMapKeyRef.withKey

withKey(key)

fn spec.sideCars.containers.env.valueFrom.configMapKeyRef.withName

withName(name)

fn spec.sideCars.containers.env.valueFrom.configMapKeyRef.withOptional

withOptional(optional)

obj spec.sideCars.containers.env.valueFrom.fieldRef

fn spec.sideCars.containers.env.valueFrom.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.sideCars.containers.env.valueFrom.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.sideCars.containers.env.valueFrom.resourceFieldRef

fn spec.sideCars.containers.env.valueFrom.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.sideCars.containers.env.valueFrom.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.sideCars.containers.env.valueFrom.resourceFieldRef.withResource

withResource(resource)

obj spec.sideCars.containers.env.valueFrom.secretKeyRef

fn spec.sideCars.containers.env.valueFrom.secretKeyRef.withKey

withKey(key)

fn spec.sideCars.containers.env.valueFrom.secretKeyRef.withName

withName(name)

fn spec.sideCars.containers.env.valueFrom.secretKeyRef.withOptional

withOptional(optional)

obj spec.sideCars.containers.envFrom

fn spec.sideCars.containers.envFrom.withPrefix

withPrefix(prefix)

obj spec.sideCars.containers.envFrom.configMapRef

fn spec.sideCars.containers.envFrom.configMapRef.withName

withName(name)

fn spec.sideCars.containers.envFrom.configMapRef.withOptional

withOptional(optional)

obj spec.sideCars.containers.envFrom.secretRef

fn spec.sideCars.containers.envFrom.secretRef.withName

withName(name)

fn spec.sideCars.containers.envFrom.secretRef.withOptional

withOptional(optional)

obj spec.sideCars.containers.lifecycle

obj spec.sideCars.containers.lifecycle.postStart

obj spec.sideCars.containers.lifecycle.postStart.exec

fn spec.sideCars.containers.lifecycle.postStart.exec.withCommand

withCommand(command)

fn spec.sideCars.containers.lifecycle.postStart.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.lifecycle.postStart.httpGet

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withHost

withHost(host)

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withPath

withPath(path)

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withPort

withPort(port)

fn spec.sideCars.containers.lifecycle.postStart.httpGet.withScheme

withScheme(scheme)

obj spec.sideCars.containers.lifecycle.postStart.httpGet.httpHeaders

fn spec.sideCars.containers.lifecycle.postStart.httpGet.httpHeaders.withName

withName(name)

fn spec.sideCars.containers.lifecycle.postStart.httpGet.httpHeaders.withValue

withValue(value)

obj spec.sideCars.containers.lifecycle.postStart.sleep

fn spec.sideCars.containers.lifecycle.postStart.sleep.withSeconds

withSeconds(seconds)

obj spec.sideCars.containers.lifecycle.postStart.tcpSocket

fn spec.sideCars.containers.lifecycle.postStart.tcpSocket.withHost

withHost(host)

fn spec.sideCars.containers.lifecycle.postStart.tcpSocket.withPort

withPort(port)

obj spec.sideCars.containers.lifecycle.preStop

obj spec.sideCars.containers.lifecycle.preStop.exec

fn spec.sideCars.containers.lifecycle.preStop.exec.withCommand

withCommand(command)

fn spec.sideCars.containers.lifecycle.preStop.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.lifecycle.preStop.httpGet

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withHost

withHost(host)

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withPath

withPath(path)

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withPort

withPort(port)

fn spec.sideCars.containers.lifecycle.preStop.httpGet.withScheme

withScheme(scheme)

obj spec.sideCars.containers.lifecycle.preStop.httpGet.httpHeaders

fn spec.sideCars.containers.lifecycle.preStop.httpGet.httpHeaders.withName

withName(name)

fn spec.sideCars.containers.lifecycle.preStop.httpGet.httpHeaders.withValue

withValue(value)

obj spec.sideCars.containers.lifecycle.preStop.sleep

fn spec.sideCars.containers.lifecycle.preStop.sleep.withSeconds

withSeconds(seconds)

obj spec.sideCars.containers.lifecycle.preStop.tcpSocket

fn spec.sideCars.containers.lifecycle.preStop.tcpSocket.withHost

withHost(host)

fn spec.sideCars.containers.lifecycle.preStop.tcpSocket.withPort

withPort(port)

obj spec.sideCars.containers.livenessProbe

fn spec.sideCars.containers.livenessProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.sideCars.containers.livenessProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.sideCars.containers.livenessProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.sideCars.containers.livenessProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.sideCars.containers.livenessProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.sideCars.containers.livenessProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.sideCars.containers.livenessProbe.exec

fn spec.sideCars.containers.livenessProbe.exec.withCommand

withCommand(command)

fn spec.sideCars.containers.livenessProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.livenessProbe.grpc

fn spec.sideCars.containers.livenessProbe.grpc.withPort

withPort(port)

fn spec.sideCars.containers.livenessProbe.grpc.withService

withService(service)

obj spec.sideCars.containers.livenessProbe.httpGet

fn spec.sideCars.containers.livenessProbe.httpGet.withHost

withHost(host)

fn spec.sideCars.containers.livenessProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.sideCars.containers.livenessProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.livenessProbe.httpGet.withPath

withPath(path)

fn spec.sideCars.containers.livenessProbe.httpGet.withPort

withPort(port)

fn spec.sideCars.containers.livenessProbe.httpGet.withScheme

withScheme(scheme)

obj spec.sideCars.containers.livenessProbe.httpGet.httpHeaders

fn spec.sideCars.containers.livenessProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.sideCars.containers.livenessProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.sideCars.containers.livenessProbe.tcpSocket

fn spec.sideCars.containers.livenessProbe.tcpSocket.withHost

withHost(host)

fn spec.sideCars.containers.livenessProbe.tcpSocket.withPort

withPort(port)

obj spec.sideCars.containers.ports

fn spec.sideCars.containers.ports.withContainerPort

withContainerPort(containerPort)

fn spec.sideCars.containers.ports.withHostIP

withHostIP(hostIP)

fn spec.sideCars.containers.ports.withHostPort

withHostPort(hostPort)

fn spec.sideCars.containers.ports.withName

withName(name)

fn spec.sideCars.containers.ports.withProtocol

withProtocol(protocol)

obj spec.sideCars.containers.readinessProbe

fn spec.sideCars.containers.readinessProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.sideCars.containers.readinessProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.sideCars.containers.readinessProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.sideCars.containers.readinessProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.sideCars.containers.readinessProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.sideCars.containers.readinessProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.sideCars.containers.readinessProbe.exec

fn spec.sideCars.containers.readinessProbe.exec.withCommand

withCommand(command)

fn spec.sideCars.containers.readinessProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.readinessProbe.grpc

fn spec.sideCars.containers.readinessProbe.grpc.withPort

withPort(port)

fn spec.sideCars.containers.readinessProbe.grpc.withService

withService(service)

obj spec.sideCars.containers.readinessProbe.httpGet

fn spec.sideCars.containers.readinessProbe.httpGet.withHost

withHost(host)

fn spec.sideCars.containers.readinessProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.sideCars.containers.readinessProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.readinessProbe.httpGet.withPath

withPath(path)

fn spec.sideCars.containers.readinessProbe.httpGet.withPort

withPort(port)

fn spec.sideCars.containers.readinessProbe.httpGet.withScheme

withScheme(scheme)

obj spec.sideCars.containers.readinessProbe.httpGet.httpHeaders

fn spec.sideCars.containers.readinessProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.sideCars.containers.readinessProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.sideCars.containers.readinessProbe.tcpSocket

fn spec.sideCars.containers.readinessProbe.tcpSocket.withHost

withHost(host)

fn spec.sideCars.containers.readinessProbe.tcpSocket.withPort

withPort(port)

obj spec.sideCars.containers.resizePolicy

fn spec.sideCars.containers.resizePolicy.withResourceName

withResourceName(resourceName)

fn spec.sideCars.containers.resizePolicy.withRestartPolicy

withRestartPolicy(restartPolicy)

obj spec.sideCars.containers.resources

fn spec.sideCars.containers.resources.withClaims

withClaims(claims)

fn spec.sideCars.containers.resources.withClaimsMixin

withClaimsMixin(claims)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.resources.withLimits

withLimits(limits)

fn spec.sideCars.containers.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.resources.withRequests

withRequests(requests)

fn spec.sideCars.containers.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.resources.claims

fn spec.sideCars.containers.resources.claims.withName

withName(name)

obj spec.sideCars.containers.securityContext

fn spec.sideCars.containers.securityContext.withAllowPrivilegeEscalation

withAllowPrivilegeEscalation(allowPrivilegeEscalation)

fn spec.sideCars.containers.securityContext.withPrivileged

withPrivileged(privileged)

fn spec.sideCars.containers.securityContext.withProcMount

withProcMount(procMount)

fn spec.sideCars.containers.securityContext.withReadOnlyRootFilesystem

withReadOnlyRootFilesystem(readOnlyRootFilesystem)

fn spec.sideCars.containers.securityContext.withRunAsGroup

withRunAsGroup(runAsGroup)

fn spec.sideCars.containers.securityContext.withRunAsNonRoot

withRunAsNonRoot(runAsNonRoot)

fn spec.sideCars.containers.securityContext.withRunAsUser

withRunAsUser(runAsUser)

obj spec.sideCars.containers.securityContext.capabilities

fn spec.sideCars.containers.securityContext.capabilities.withAdd

withAdd(add)

fn spec.sideCars.containers.securityContext.capabilities.withAddMixin

withAddMixin(add)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.securityContext.capabilities.withDrop

withDrop(drop)

fn spec.sideCars.containers.securityContext.capabilities.withDropMixin

withDropMixin(drop)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.securityContext.seLinuxOptions

fn spec.sideCars.containers.securityContext.seLinuxOptions.withLevel

withLevel(level)

fn spec.sideCars.containers.securityContext.seLinuxOptions.withRole

withRole(role)

fn spec.sideCars.containers.securityContext.seLinuxOptions.withType

withType(type)

fn spec.sideCars.containers.securityContext.seLinuxOptions.withUser

withUser(user)

obj spec.sideCars.containers.securityContext.seccompProfile

fn spec.sideCars.containers.securityContext.seccompProfile.withLocalhostProfile

withLocalhostProfile(localhostProfile)

fn spec.sideCars.containers.securityContext.seccompProfile.withType

withType(type)

obj spec.sideCars.containers.securityContext.windowsOptions

fn spec.sideCars.containers.securityContext.windowsOptions.withGmsaCredentialSpec

withGmsaCredentialSpec(gmsaCredentialSpec)

fn spec.sideCars.containers.securityContext.windowsOptions.withGmsaCredentialSpecName

withGmsaCredentialSpecName(gmsaCredentialSpecName)

fn spec.sideCars.containers.securityContext.windowsOptions.withHostProcess

withHostProcess(hostProcess)

fn spec.sideCars.containers.securityContext.windowsOptions.withRunAsUserName

withRunAsUserName(runAsUserName)

obj spec.sideCars.containers.startupProbe

fn spec.sideCars.containers.startupProbe.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.sideCars.containers.startupProbe.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.sideCars.containers.startupProbe.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.sideCars.containers.startupProbe.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.sideCars.containers.startupProbe.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.sideCars.containers.startupProbe.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.sideCars.containers.startupProbe.exec

fn spec.sideCars.containers.startupProbe.exec.withCommand

withCommand(command)

fn spec.sideCars.containers.startupProbe.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.sideCars.containers.startupProbe.grpc

fn spec.sideCars.containers.startupProbe.grpc.withPort

withPort(port)

fn spec.sideCars.containers.startupProbe.grpc.withService

withService(service)

obj spec.sideCars.containers.startupProbe.httpGet

fn spec.sideCars.containers.startupProbe.httpGet.withHost

withHost(host)

fn spec.sideCars.containers.startupProbe.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.sideCars.containers.startupProbe.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.sideCars.containers.startupProbe.httpGet.withPath

withPath(path)

fn spec.sideCars.containers.startupProbe.httpGet.withPort

withPort(port)

fn spec.sideCars.containers.startupProbe.httpGet.withScheme

withScheme(scheme)

obj spec.sideCars.containers.startupProbe.httpGet.httpHeaders

fn spec.sideCars.containers.startupProbe.httpGet.httpHeaders.withName

withName(name)

fn spec.sideCars.containers.startupProbe.httpGet.httpHeaders.withValue

withValue(value)

obj spec.sideCars.containers.startupProbe.tcpSocket

fn spec.sideCars.containers.startupProbe.tcpSocket.withHost

withHost(host)

fn spec.sideCars.containers.startupProbe.tcpSocket.withPort

withPort(port)

obj spec.sideCars.containers.volumeDevices

fn spec.sideCars.containers.volumeDevices.withDevicePath

withDevicePath(devicePath)

fn spec.sideCars.containers.volumeDevices.withName

withName(name)

obj spec.sideCars.containers.volumeMounts

fn spec.sideCars.containers.volumeMounts.withMountPath

withMountPath(mountPath)

fn spec.sideCars.containers.volumeMounts.withMountPropagation

withMountPropagation(mountPropagation)

fn spec.sideCars.containers.volumeMounts.withName

withName(name)

fn spec.sideCars.containers.volumeMounts.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.containers.volumeMounts.withSubPath

withSubPath(subPath)

fn spec.sideCars.containers.volumeMounts.withSubPathExpr

withSubPathExpr(subPathExpr)

obj spec.sideCars.resources

fn spec.sideCars.resources.withClaims

withClaims(claims)

fn spec.sideCars.resources.withClaimsMixin

withClaimsMixin(claims)

Note: This function appends passed data to existing values

fn spec.sideCars.resources.withLimits

withLimits(limits)

fn spec.sideCars.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.sideCars.resources.withRequests

withRequests(requests)

fn spec.sideCars.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.sideCars.resources.claims

fn spec.sideCars.resources.claims.withName

withName(name)

obj spec.sideCars.volumeClaimTemplates

fn spec.sideCars.volumeClaimTemplates.withApiVersion

withApiVersion(apiVersion)

fn spec.sideCars.volumeClaimTemplates.withKind

withKind(kind)

obj spec.sideCars.volumeClaimTemplates.metadata

fn spec.sideCars.volumeClaimTemplates.metadata.withAnnotations

withAnnotations(annotations)

fn spec.sideCars.volumeClaimTemplates.metadata.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.metadata.withFinalizers

withFinalizers(finalizers)

fn spec.sideCars.volumeClaimTemplates.metadata.withFinalizersMixin

withFinalizersMixin(finalizers)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.metadata.withLabels

withLabels(labels)

fn spec.sideCars.volumeClaimTemplates.metadata.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.metadata.withName

withName(name)

fn spec.sideCars.volumeClaimTemplates.metadata.withNamespace

withNamespace(namespace)

obj spec.sideCars.volumeClaimTemplates.spec

fn spec.sideCars.volumeClaimTemplates.spec.withAccessModes

withAccessModes(accessModes)

fn spec.sideCars.volumeClaimTemplates.spec.withAccessModesMixin

withAccessModesMixin(accessModes)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.spec.withStorageClassName

withStorageClassName(storageClassName)

fn spec.sideCars.volumeClaimTemplates.spec.withVolumeAttributesClassName

withVolumeAttributesClassName(volumeAttributesClassName)

fn spec.sideCars.volumeClaimTemplates.spec.withVolumeMode

withVolumeMode(volumeMode)

fn spec.sideCars.volumeClaimTemplates.spec.withVolumeName

withVolumeName(volumeName)

obj spec.sideCars.volumeClaimTemplates.spec.dataSource

fn spec.sideCars.volumeClaimTemplates.spec.dataSource.withApiGroup

withApiGroup(apiGroup)

fn spec.sideCars.volumeClaimTemplates.spec.dataSource.withKind

withKind(kind)

fn spec.sideCars.volumeClaimTemplates.spec.dataSource.withName

withName(name)

obj spec.sideCars.volumeClaimTemplates.spec.dataSourceRef

fn spec.sideCars.volumeClaimTemplates.spec.dataSourceRef.withApiGroup

withApiGroup(apiGroup)

fn spec.sideCars.volumeClaimTemplates.spec.dataSourceRef.withKind

withKind(kind)

fn spec.sideCars.volumeClaimTemplates.spec.dataSourceRef.withName

withName(name)

fn spec.sideCars.volumeClaimTemplates.spec.dataSourceRef.withNamespace

withNamespace(namespace)

obj spec.sideCars.volumeClaimTemplates.spec.resources

fn spec.sideCars.volumeClaimTemplates.spec.resources.withLimits

withLimits(limits)

fn spec.sideCars.volumeClaimTemplates.spec.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.spec.resources.withRequests

withRequests(requests)

fn spec.sideCars.volumeClaimTemplates.spec.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.sideCars.volumeClaimTemplates.spec.selector

fn spec.sideCars.volumeClaimTemplates.spec.selector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.sideCars.volumeClaimTemplates.spec.selector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.sideCars.volumeClaimTemplates.spec.selector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.sideCars.volumeClaimTemplates.spec.selector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.sideCars.volumeClaimTemplates.spec.selector.matchExpressions

fn spec.sideCars.volumeClaimTemplates.spec.selector.matchExpressions.withKey

withKey(key)

fn spec.sideCars.volumeClaimTemplates.spec.selector.matchExpressions.withOperator

withOperator(operator)

fn spec.sideCars.volumeClaimTemplates.spec.selector.matchExpressions.withValues

withValues(values)

fn spec.sideCars.volumeClaimTemplates.spec.selector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes

fn spec.sideCars.volumes.withName

withName(name)

obj spec.sideCars.volumes.awsElasticBlockStore

fn spec.sideCars.volumes.awsElasticBlockStore.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.awsElasticBlockStore.withPartition

withPartition(partition)

fn spec.sideCars.volumes.awsElasticBlockStore.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.awsElasticBlockStore.withVolumeID

withVolumeID(volumeID)

obj spec.sideCars.volumes.azureDisk

fn spec.sideCars.volumes.azureDisk.withCachingMode

withCachingMode(cachingMode)

fn spec.sideCars.volumes.azureDisk.withDiskName

withDiskName(diskName)

fn spec.sideCars.volumes.azureDisk.withDiskURI

withDiskURI(diskURI)

fn spec.sideCars.volumes.azureDisk.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.azureDisk.withKind

withKind(kind)

fn spec.sideCars.volumes.azureDisk.withReadOnly

withReadOnly(readOnly)

obj spec.sideCars.volumes.azureFile

fn spec.sideCars.volumes.azureFile.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.azureFile.withSecretName

withSecretName(secretName)

fn spec.sideCars.volumes.azureFile.withShareName

withShareName(shareName)

obj spec.sideCars.volumes.cephfs

fn spec.sideCars.volumes.cephfs.withMonitors

withMonitors(monitors)

fn spec.sideCars.volumes.cephfs.withMonitorsMixin

withMonitorsMixin(monitors)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.cephfs.withPath

withPath(path)

fn spec.sideCars.volumes.cephfs.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.cephfs.withSecretFile

withSecretFile(secretFile)

fn spec.sideCars.volumes.cephfs.withUser

withUser(user)

obj spec.sideCars.volumes.cephfs.secretRef

fn spec.sideCars.volumes.cephfs.secretRef.withName

withName(name)

obj spec.sideCars.volumes.cinder

fn spec.sideCars.volumes.cinder.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.cinder.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.cinder.withVolumeID

withVolumeID(volumeID)

obj spec.sideCars.volumes.cinder.secretRef

fn spec.sideCars.volumes.cinder.secretRef.withName

withName(name)

obj spec.sideCars.volumes.configMap

fn spec.sideCars.volumes.configMap.withDefaultMode

withDefaultMode(defaultMode)

fn spec.sideCars.volumes.configMap.withItems

withItems(items)

fn spec.sideCars.volumes.configMap.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.configMap.withName

withName(name)

fn spec.sideCars.volumes.configMap.withOptional

withOptional(optional)

obj spec.sideCars.volumes.configMap.items

fn spec.sideCars.volumes.configMap.items.withKey

withKey(key)

fn spec.sideCars.volumes.configMap.items.withMode

withMode(mode)

fn spec.sideCars.volumes.configMap.items.withPath

withPath(path)

obj spec.sideCars.volumes.csi

fn spec.sideCars.volumes.csi.withDriver

withDriver(driver)

fn spec.sideCars.volumes.csi.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.csi.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.csi.withVolumeAttributes

withVolumeAttributes(volumeAttributes)

fn spec.sideCars.volumes.csi.withVolumeAttributesMixin

withVolumeAttributesMixin(volumeAttributes)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.csi.nodePublishSecretRef

fn spec.sideCars.volumes.csi.nodePublishSecretRef.withName

withName(name)

obj spec.sideCars.volumes.downwardAPI

fn spec.sideCars.volumes.downwardAPI.withDefaultMode

withDefaultMode(defaultMode)

fn spec.sideCars.volumes.downwardAPI.withItems

withItems(items)

fn spec.sideCars.volumes.downwardAPI.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.downwardAPI.items

fn spec.sideCars.volumes.downwardAPI.items.withMode

withMode(mode)

fn spec.sideCars.volumes.downwardAPI.items.withPath

withPath(path)

obj spec.sideCars.volumes.downwardAPI.items.fieldRef

fn spec.sideCars.volumes.downwardAPI.items.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.sideCars.volumes.downwardAPI.items.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.sideCars.volumes.downwardAPI.items.resourceFieldRef

fn spec.sideCars.volumes.downwardAPI.items.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.sideCars.volumes.downwardAPI.items.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.sideCars.volumes.downwardAPI.items.resourceFieldRef.withResource

withResource(resource)

obj spec.sideCars.volumes.emptyDir

fn spec.sideCars.volumes.emptyDir.withMedium

withMedium(medium)

fn spec.sideCars.volumes.emptyDir.withSizeLimit

withSizeLimit(sizeLimit)

obj spec.sideCars.volumes.ephemeral

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withAnnotations

withAnnotations(annotations)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withAnnotationsMixin

withAnnotationsMixin(annotations)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withFinalizers

withFinalizers(finalizers)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withFinalizersMixin

withFinalizersMixin(finalizers)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withLabels

withLabels(labels)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withLabelsMixin

withLabelsMixin(labels)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withName

withName(name)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.metadata.withNamespace

withNamespace(namespace)

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withAccessModes

withAccessModes(accessModes)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withAccessModesMixin

withAccessModesMixin(accessModes)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withStorageClassName

withStorageClassName(storageClassName)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withVolumeAttributesClassName

withVolumeAttributesClassName(volumeAttributesClassName)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withVolumeMode

withVolumeMode(volumeMode)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.withVolumeName

withVolumeName(volumeName)

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSource

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSource.withApiGroup

withApiGroup(apiGroup)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSource.withKind

withKind(kind)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSource.withName

withName(name)

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withApiGroup

withApiGroup(apiGroup)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withKind

withKind(kind)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withName

withName(name)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.dataSourceRef.withNamespace

withNamespace(namespace)

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.resources

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.resources.withLimits

withLimits(limits)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.resources.withLimitsMixin

withLimitsMixin(limits)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.resources.withRequests

withRequests(requests)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.resources.withRequestsMixin

withRequestsMixin(requests)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withKey

withKey(key)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withOperator

withOperator(operator)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withValues

withValues(values)

fn spec.sideCars.volumes.ephemeral.volumeClaimTemplate.spec.selector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.fc

fn spec.sideCars.volumes.fc.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.fc.withLun

withLun(lun)

fn spec.sideCars.volumes.fc.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.fc.withTargetWWNs

withTargetWWNs(targetWWNs)

fn spec.sideCars.volumes.fc.withTargetWWNsMixin

withTargetWWNsMixin(targetWWNs)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.fc.withWwids

withWwids(wwids)

fn spec.sideCars.volumes.fc.withWwidsMixin

withWwidsMixin(wwids)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.flexVolume

fn spec.sideCars.volumes.flexVolume.withDriver

withDriver(driver)

fn spec.sideCars.volumes.flexVolume.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.flexVolume.withOptions

withOptions(options)

fn spec.sideCars.volumes.flexVolume.withOptionsMixin

withOptionsMixin(options)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.flexVolume.withReadOnly

withReadOnly(readOnly)

obj spec.sideCars.volumes.flexVolume.secretRef

fn spec.sideCars.volumes.flexVolume.secretRef.withName

withName(name)

obj spec.sideCars.volumes.flocker

fn spec.sideCars.volumes.flocker.withDatasetName

withDatasetName(datasetName)

fn spec.sideCars.volumes.flocker.withDatasetUUID

withDatasetUUID(datasetUUID)

obj spec.sideCars.volumes.gcePersistentDisk

fn spec.sideCars.volumes.gcePersistentDisk.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.gcePersistentDisk.withPartition

withPartition(partition)

fn spec.sideCars.volumes.gcePersistentDisk.withPdName

withPdName(pdName)

fn spec.sideCars.volumes.gcePersistentDisk.withReadOnly

withReadOnly(readOnly)

obj spec.sideCars.volumes.gitRepo

fn spec.sideCars.volumes.gitRepo.withDirectory

withDirectory(directory)

fn spec.sideCars.volumes.gitRepo.withRepository

withRepository(repository)

fn spec.sideCars.volumes.gitRepo.withRevision

withRevision(revision)

obj spec.sideCars.volumes.glusterfs

fn spec.sideCars.volumes.glusterfs.withEndpoints

withEndpoints(endpoints)

fn spec.sideCars.volumes.glusterfs.withPath

withPath(path)

fn spec.sideCars.volumes.glusterfs.withReadOnly

withReadOnly(readOnly)

obj spec.sideCars.volumes.hostPath

fn spec.sideCars.volumes.hostPath.withPath

withPath(path)

fn spec.sideCars.volumes.hostPath.withType

withType(type)

obj spec.sideCars.volumes.iscsi

fn spec.sideCars.volumes.iscsi.withChapAuthDiscovery

withChapAuthDiscovery(chapAuthDiscovery)

fn spec.sideCars.volumes.iscsi.withChapAuthSession

withChapAuthSession(chapAuthSession)

fn spec.sideCars.volumes.iscsi.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.iscsi.withInitiatorName

withInitiatorName(initiatorName)

fn spec.sideCars.volumes.iscsi.withIqn

withIqn(iqn)

fn spec.sideCars.volumes.iscsi.withIscsiInterface

withIscsiInterface(iscsiInterface)

fn spec.sideCars.volumes.iscsi.withLun

withLun(lun)

fn spec.sideCars.volumes.iscsi.withPortals

withPortals(portals)

fn spec.sideCars.volumes.iscsi.withPortalsMixin

withPortalsMixin(portals)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.iscsi.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.iscsi.withTargetPortal

withTargetPortal(targetPortal)

obj spec.sideCars.volumes.iscsi.secretRef

fn spec.sideCars.volumes.iscsi.secretRef.withName

withName(name)

obj spec.sideCars.volumes.nfs

fn spec.sideCars.volumes.nfs.withPath

withPath(path)

fn spec.sideCars.volumes.nfs.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.nfs.withServer

withServer(server)

obj spec.sideCars.volumes.persistentVolumeClaim

fn spec.sideCars.volumes.persistentVolumeClaim.withClaimName

withClaimName(claimName)

fn spec.sideCars.volumes.persistentVolumeClaim.withReadOnly

withReadOnly(readOnly)

obj spec.sideCars.volumes.photonPersistentDisk

fn spec.sideCars.volumes.photonPersistentDisk.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.photonPersistentDisk.withPdID

withPdID(pdID)

obj spec.sideCars.volumes.portworxVolume

fn spec.sideCars.volumes.portworxVolume.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.portworxVolume.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.portworxVolume.withVolumeID

withVolumeID(volumeID)

obj spec.sideCars.volumes.projected

fn spec.sideCars.volumes.projected.withDefaultMode

withDefaultMode(defaultMode)

fn spec.sideCars.volumes.projected.withSources

withSources(sources)

fn spec.sideCars.volumes.projected.withSourcesMixin

withSourcesMixin(sources)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.projected.sources

obj spec.sideCars.volumes.projected.sources.clusterTrustBundle

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.withName

withName(name)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.withOptional

withOptional(optional)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.withPath

withPath(path)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.withSignerName

withSignerName(signerName)

obj spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.withMatchExpressions

withMatchExpressions(matchExpressions)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.withMatchExpressionsMixin

withMatchExpressionsMixin(matchExpressions)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.withMatchLabels

withMatchLabels(matchLabels)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.withMatchLabelsMixin

withMatchLabelsMixin(matchLabels)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withKey

withKey(key)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withOperator

withOperator(operator)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withValues

withValues(values)

fn spec.sideCars.volumes.projected.sources.clusterTrustBundle.labelSelector.matchExpressions.withValuesMixin

withValuesMixin(values)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.projected.sources.configMap

fn spec.sideCars.volumes.projected.sources.configMap.withItems

withItems(items)

fn spec.sideCars.volumes.projected.sources.configMap.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.projected.sources.configMap.withName

withName(name)

fn spec.sideCars.volumes.projected.sources.configMap.withOptional

withOptional(optional)

obj spec.sideCars.volumes.projected.sources.configMap.items

fn spec.sideCars.volumes.projected.sources.configMap.items.withKey

withKey(key)

fn spec.sideCars.volumes.projected.sources.configMap.items.withMode

withMode(mode)

fn spec.sideCars.volumes.projected.sources.configMap.items.withPath

withPath(path)

obj spec.sideCars.volumes.projected.sources.downwardAPI

fn spec.sideCars.volumes.projected.sources.downwardAPI.withItems

withItems(items)

fn spec.sideCars.volumes.projected.sources.downwardAPI.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

obj spec.sideCars.volumes.projected.sources.downwardAPI.items

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.withMode

withMode(mode)

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.withPath

withPath(path)

obj spec.sideCars.volumes.projected.sources.downwardAPI.items.fieldRef

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.fieldRef.withApiVersion

withApiVersion(apiVersion)

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.fieldRef.withFieldPath

withFieldPath(fieldPath)

obj spec.sideCars.volumes.projected.sources.downwardAPI.items.resourceFieldRef

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.resourceFieldRef.withContainerName

withContainerName(containerName)

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.resourceFieldRef.withDivisor

withDivisor(divisor)

fn spec.sideCars.volumes.projected.sources.downwardAPI.items.resourceFieldRef.withResource

withResource(resource)

obj spec.sideCars.volumes.projected.sources.secret

fn spec.sideCars.volumes.projected.sources.secret.withItems

withItems(items)

fn spec.sideCars.volumes.projected.sources.secret.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.projected.sources.secret.withName

withName(name)

fn spec.sideCars.volumes.projected.sources.secret.withOptional

withOptional(optional)

obj spec.sideCars.volumes.projected.sources.secret.items

fn spec.sideCars.volumes.projected.sources.secret.items.withKey

withKey(key)

fn spec.sideCars.volumes.projected.sources.secret.items.withMode

withMode(mode)

fn spec.sideCars.volumes.projected.sources.secret.items.withPath

withPath(path)

obj spec.sideCars.volumes.projected.sources.serviceAccountToken

fn spec.sideCars.volumes.projected.sources.serviceAccountToken.withAudience

withAudience(audience)

fn spec.sideCars.volumes.projected.sources.serviceAccountToken.withExpirationSeconds

withExpirationSeconds(expirationSeconds)

fn spec.sideCars.volumes.projected.sources.serviceAccountToken.withPath

withPath(path)

obj spec.sideCars.volumes.quobyte

fn spec.sideCars.volumes.quobyte.withGroup

withGroup(group)

fn spec.sideCars.volumes.quobyte.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.quobyte.withRegistry

withRegistry(registry)

fn spec.sideCars.volumes.quobyte.withTenant

withTenant(tenant)

fn spec.sideCars.volumes.quobyte.withUser

withUser(user)

fn spec.sideCars.volumes.quobyte.withVolume

withVolume(volume)

obj spec.sideCars.volumes.rbd

fn spec.sideCars.volumes.rbd.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.rbd.withImage

withImage(image)

fn spec.sideCars.volumes.rbd.withKeyring

withKeyring(keyring)

fn spec.sideCars.volumes.rbd.withMonitors

withMonitors(monitors)

fn spec.sideCars.volumes.rbd.withMonitorsMixin

withMonitorsMixin(monitors)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.rbd.withPool

withPool(pool)

fn spec.sideCars.volumes.rbd.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.rbd.withUser

withUser(user)

obj spec.sideCars.volumes.rbd.secretRef

fn spec.sideCars.volumes.rbd.secretRef.withName

withName(name)

obj spec.sideCars.volumes.scaleIO

fn spec.sideCars.volumes.scaleIO.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.scaleIO.withGateway

withGateway(gateway)

fn spec.sideCars.volumes.scaleIO.withProtectionDomain

withProtectionDomain(protectionDomain)

fn spec.sideCars.volumes.scaleIO.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.scaleIO.withSslEnabled

withSslEnabled(sslEnabled)

fn spec.sideCars.volumes.scaleIO.withStorageMode

withStorageMode(storageMode)

fn spec.sideCars.volumes.scaleIO.withStoragePool

withStoragePool(storagePool)

fn spec.sideCars.volumes.scaleIO.withSystem

withSystem(system)

fn spec.sideCars.volumes.scaleIO.withVolumeName

withVolumeName(volumeName)

obj spec.sideCars.volumes.scaleIO.secretRef

fn spec.sideCars.volumes.scaleIO.secretRef.withName

withName(name)

obj spec.sideCars.volumes.secret

fn spec.sideCars.volumes.secret.withDefaultMode

withDefaultMode(defaultMode)

fn spec.sideCars.volumes.secret.withItems

withItems(items)

fn spec.sideCars.volumes.secret.withItemsMixin

withItemsMixin(items)

Note: This function appends passed data to existing values

fn spec.sideCars.volumes.secret.withOptional

withOptional(optional)

fn spec.sideCars.volumes.secret.withSecretName

withSecretName(secretName)

obj spec.sideCars.volumes.secret.items

fn spec.sideCars.volumes.secret.items.withKey

withKey(key)

fn spec.sideCars.volumes.secret.items.withMode

withMode(mode)

fn spec.sideCars.volumes.secret.items.withPath

withPath(path)

obj spec.sideCars.volumes.storageos

fn spec.sideCars.volumes.storageos.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.storageos.withReadOnly

withReadOnly(readOnly)

fn spec.sideCars.volumes.storageos.withVolumeName

withVolumeName(volumeName)

fn spec.sideCars.volumes.storageos.withVolumeNamespace

withVolumeNamespace(volumeNamespace)

obj spec.sideCars.volumes.storageos.secretRef

fn spec.sideCars.volumes.storageos.secretRef.withName

withName(name)

obj spec.sideCars.volumes.vsphereVolume

fn spec.sideCars.volumes.vsphereVolume.withFsType

withFsType(fsType)

fn spec.sideCars.volumes.vsphereVolume.withStoragePolicyID

withStoragePolicyID(storagePolicyID)

fn spec.sideCars.volumes.vsphereVolume.withStoragePolicyName

withStoragePolicyName(storagePolicyName)

fn spec.sideCars.volumes.vsphereVolume.withVolumePath

withVolumePath(volumePath)

obj spec.startup

fn spec.startup.withFailureThreshold

withFailureThreshold(failureThreshold)

fn spec.startup.withInitialDelaySeconds

withInitialDelaySeconds(initialDelaySeconds)

fn spec.startup.withPeriodSeconds

withPeriodSeconds(periodSeconds)

fn spec.startup.withSuccessThreshold

withSuccessThreshold(successThreshold)

fn spec.startup.withTerminationGracePeriodSeconds

withTerminationGracePeriodSeconds(terminationGracePeriodSeconds)

fn spec.startup.withTimeoutSeconds

withTimeoutSeconds(timeoutSeconds)

obj spec.startup.exec

fn spec.startup.exec.withCommand

withCommand(command)

fn spec.startup.exec.withCommandMixin

withCommandMixin(command)

Note: This function appends passed data to existing values

obj spec.startup.grpc

fn spec.startup.grpc.withPort

withPort(port)

fn spec.startup.grpc.withService

withService(service)

obj spec.startup.httpGet

fn spec.startup.httpGet.withHost

withHost(host)

fn spec.startup.httpGet.withHttpHeaders

withHttpHeaders(httpHeaders)

fn spec.startup.httpGet.withHttpHeadersMixin

withHttpHeadersMixin(httpHeaders)

Note: This function appends passed data to existing values

fn spec.startup.httpGet.withPath

withPath(path)

fn spec.startup.httpGet.withPort

withPort(port)

fn spec.startup.httpGet.withScheme

withScheme(scheme)

obj spec.startup.httpGet.httpHeaders

fn spec.startup.httpGet.httpHeaders.withName

withName(name)

fn spec.startup.httpGet.httpHeaders.withValue

withValue(value)

obj spec.startup.tcpSocket

fn spec.startup.tcpSocket.withHost

withHost(host)

fn spec.startup.tcpSocket.withPort

withPort(port)

obj spec.users

fn spec.users.withName

withName(name)