--- title: Operator Installation description: Configuration for Istio control plane installation through the Operator. location: https://istio.io/docs/reference/config/istio.operator.v1alpha12.pb.html layout: protoc-gen-docs generator: protoc-gen-docs number_of_entries: 55 ---

IstioControlPlane is a schema for both defining and customizing Istio control plane installations. Running the operator with an empty user defined InstallSpec results in an control plane with default values, using the default charts.

The simplest install specialization is to point the user InstallSpec profile to a different values file, for example an Istio minimal control plane, which will use the values associated with the minimal control plane profile for Istio.

Deeper customization is possible at three levels:

  1. New APIs defined in this file

    Feature API: this API groups an Istio install by features and allows enabling/disabling the features, selecting base control plane profiles, as well as some additional high level settings that are feature specific. Each feature contains one or more components, which correspond to Istio components (Pods) in the cluster.

    k8s API: this API is a pass through to k8s resource settings for Istio k8s resources. It allows customizing Istio k8s resources like Affinity, Resource requests/limits, PodDisruptionBudgetSpec, Selectors etc. in a more consistent and k8s specific way compared to values.yaml. See KubernetesResourcesSpec in this file for details.

  2. values.yaml

    The entirety of values.yaml settings is accessible through InstallSpec (see CommonComponentSpec/Values). This API will gradually be deprecated and values there will be moved either into CRDs that are used to directly configure components or, in the case of k8s settings, will be replaced by the new API above.

  3. k8s resource overlays

    Once a manifest is rendered from InstallSpec, a further customization can be applied by specifying k8s resource overlays. The concept is similar to kustomize, where JSON patches are applied for object paths. This allows customization at the lowest level and eliminates the need to create ad-hoc template parameters, or edit templates.

Here are a few example uses:

  1. Default Istio install

    spec:
    
    1. Default minimal profile install yaml spec: profile: minimal
  2. Default install with telemetry disabled

    spec:
      telemetry:
        enabled: false
    
    1. Default install with each feature installed to different namespace and security components in separate namespaces yaml spec: traffic_management: components: namespace: istio-traffic-management policy: components: namespace: istio-policy telemetry: components: namespace: istio-telemetry config_management: components: namespace: istio-config-management security: components: citadel: namespace: istio-citadel cert_manager: namespace: istio-cert-manager node_agent: namespace: istio-node-agent
  3. Default install with specialized k8s settings for pilot

    spec:
      traffic_management:
        components:
          pilot:
            k8s:
              resources:
                limits:
                  cpu: 444m
                  memory: 333Mi
                requests:
                  cpu: 222m
                  memory: 111Mi
              readinessProbe:
                failureThreshold: 44
                initialDelaySeconds: 11
                periodSeconds: 22
                successThreshold: 33
    
    1. Default install with values.yaml customizations for proxy yaml spec: traffic_management: components: proxy: values: - global.proxy.enableCoreDump: true - global.proxy.dnsRefreshRate: 10s
  4. Default install with modification to container flag in galley

    spec:
      configuration_management:
        components:
          galley:
            k8s:
              overlays:
              - apiVersion: extensions/v1beta1
                kind: Deployment
                name: istio-galley
                patches:
                - path: spec.template.spec.containers.[name:galley].command.[--livenessProbeInterval]
                  value: --livenessProbeInterval=123s
    

AutoInjectionFeatureSpec

Configuration options for auto injection feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether auto injection feature is installed. Must be set for any sub-component to be installed.

components AutoInjectionFeatureSpec.Components

AutoInjectionFeatureSpec.Components

Field Type Description
namespace string

Namespace that auto injections components are installed into.

injector SidecarInjectorComponentSpec

CNIComponentSpec

Configuration options for cni component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

CNIFeatureSpec

Configuration options for cni feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether gateway feature is installed. Must be set for any sub-component to be installed.

components CNIFeatureSpec.Components

CNIFeatureSpec.Components

Field Type Description
namespace string

Namespace that cni components are installed into.

cni CNIComponentSpec

CertManagerComponentSpec

Configuration options for certificate manager component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

CitadelComponentSpec

Configuration options for Citadel component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

ConfigManagementFeatureSpec

Configuration options for configuration management feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether config management feature is installed. Must be set for any sub-component to be installed.

components ConfigManagementFeatureSpec.Components

ConfigManagementFeatureSpec.Components

Field Type Description
namespace string

Namespace that security components are installed into.

galley GalleyComponentSpec

DeploymentStrategy

Mirrors k8s.io.api.apps.v1.DeploymentStrategy for unmarshaling.

Field Type Description
type string
rollingUpdate RollingUpdateDeployment

EgressGatewayComponentSpec

Configuration options for egress gateways.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

ExecAction

Mirrors k8s.io.api.core.v1.ExecAction for unmarshaling

Field Type Description
command string[]

GalleyComponentSpec

Configuration options for galley component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

GatewayFeatureSpec

Configuration options for gateway feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether gateway feature is installed. Must be set for any sub-component to be installed.

components GatewayFeatureSpec.Components

GatewayFeatureSpec.Components

Field Type Description
namespace string

Namespace that auto injections components are installed into.

ingressGateway IngressGatewayComponentSpec

Ingress/egress gateway configuration.

egressGateway EgressGatewayComponentSpec

HTTPGetAction

Mirrors k8s.io.api.core.v1.HTTPGetAction for unmarshaling

Field Type Description
path string
port TypeIntOrStringForPB
host string
scheme string
httpHeaders HTTPHeader[]

HTTPHeader

Mirrors k8s.io.api.core.v1.HTTPHeader for unmarshaling

Field Type Description
name string
value string

IngressGatewayComponentSpec

Configuration options for ingress gateways.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

InstallStatus

Observed state of IstioControlPlane.

Field Type Description
status map<string, InstallStatus.VersionStatus>

InstallStatus.Status

Name Description
NONE
UPDATING
HEALTHY
ERROR

InstallStatus.VersionStatus

Field Type Description
version string
status InstallStatus.Status
error string

IstioControlPlane

IstioControlPlane is a CustomResourceDefinition (CRD) describing an Istio control plane.

Field Type Description
spec IstioControlPlaneSpec

Spec defines the desired state of IstioControlPlane.

status InstallStatus

Status reports the status of the Istio control plane.

IstioControlPlaneSpec

IstioControlPlaneSpec defines the desired state of IstioControlPlane. The spec is a used to define a customization of the default profile values that are supplied with each Istio release. It is grouped at the top level by feature, where behavior of Istio functional areas is specified. Each feature contains components, where k8s resource level defaults can be overridden. Because the spec is a customization API, specifying an empty InstallSpec results in a default Istio control plane.

Field Type Description
defaultNamespace string

Default namespace if feature or component namespaces are not set.

trafficManagement TrafficManagementFeatureSpec

Selection and configuration of core Istio features.

policy PolicyFeatureSpec
telemetry TelemetryFeatureSpec
security SecurityFeatureSpec
configManagement ConfigManagementFeatureSpec
autoInjection AutoInjectionFeatureSpec
gateways GatewayFeatureSpec
cni CNIFeatureSpec
values TypeMapStringInterface

Overrides for default global values.yaml.

unvalidatedValues TypeMapStringInterface

Unvalidated overrides for default global values.yaml.

profile string

Path or name for the profile e.g. - minimal (looks in profiles dir for a file called minimal.yaml) - /tmp/istio/install/values/custom/custom-install.yaml (local file path) default profile is used if this field is unset.

installPackagePath string

Path for the install package. e.g. - /tmp/istio-installer/nightly (local file path)

hub string

Root for docker image paths e.g. docker.io/istio-release. Releases are published to docker hub under ‘istio’ project. Daily builds from prow are on gcr.io, and nightly builds from circle on docker.io/istionightly

tag string

Version tag for docker images e.g. 1.0.6

KubernetesResourcesSpec

KubernetesResourcesConfig is a common set of k8s resource configs for components.

Field Type Description
affinity k8s.io.api.core.v1.Affinity

k8s affinity. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity

env k8s.io.api.core.v1.EnvVar[]

Deployment environment variables. https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/

hpaSpec k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec

k8s HorizontalPodAutoscaler settings. https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/

imagePullPolicy string

k8s imagePullPolicy. https://kubernetes.io/docs/concepts/containers/images/

nodeSelector map<string, string>

k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector

podDisruptionBudget PodDisruptionBudgetSpec

k8s PodDisruptionBudget settings. https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#how-disruption-budgets-work

podAnnotations map<string, string>

k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/

priorityClassName string

k8s priorityclassname. Default for all resources unless overridden. https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass

readinessProbe ReadinessProbe

k8s readinessProbe settings. https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/ k8s.io.api.core.v1.Probe readiness_probe = 9;

replicaCount uint32

k8s Deployment replicas setting. https://kubernetes.io/docs/concepts/workloads/controllers/deployment/

resources Resources

k8s resources settings. https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container

service k8s.io.api.core.v1.ServiceSpec

k8s Service settings. https://kubernetes.io/docs/concepts/services-networking/service/

strategy DeploymentStrategy

k8s deployment strategy. https://kubernetes.io/docs/concepts/workloads/controllers/deployment/

tolerations k8s.io.api.core.v1.Toleration[]

k8s toleration https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/

overlays k8sObjectOverlay[]

Overlays for k8s resources in rendered manifests.

NodeAgentComponentSpec

Configuration options for node agent component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

ObjectMeta

Field Type Description
name string

From k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta

namespace string

PilotComponentSpec

Configuration options for the pilot component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

PodDisruptionBudgetSpec

Mirrors k8s.io.api.policy.v1beta1.PodDisruptionBudget for unmarshaling.

Field Type Description
minAvailable uint32
selector k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector
maxUnavailable uint32

PolicyComponentSpec

Configuration options for the policy enforcement component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

PolicyFeatureSpec

Configuration options for the policy feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether policy is installed. Must be enabled to enable any sub-component.

components PolicyFeatureSpec.Components

PolicyFeatureSpec.Components

Component specific config.

Field Type Description
namespace string

Namespace that all policy components are installed into.

policy PolicyComponentSpec

ProxyComponentSpec

Configuration options for the proxy.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

ReadinessProbe

Mirrors k8s.io.api.core.v1.Probe for unmarshaling

Field Type Description
exec ExecAction
httpGet HTTPGetAction
tcpSocket TCPSocketAction
initialDelaySeconds int32
timeoutSeconds int32
periodSeconds int32
successThreshold int32
failureThreshold int32

Resources

Mirrors k8s.io.api.core.v1.ResourceRequirements for unmarshaling.

Field Type Description
limits map<string, string>
requests map<string, string>

RollingUpdateDeployment

Mirrors k8s.io.api.apps.v1.RollingUpdateDeployment for unmarshaling.

Field Type Description
maxUnavailable TypeIntOrStringForPB
maxSurge TypeIntOrStringForPB

SecurityFeatureSpec

Configuration options for security feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether security feature is installed. Must be set for any sub-component to be installed.

components SecurityFeatureSpec.Components

SecurityFeatureSpec.Components

Field Type Description
namespace string

Namespace that security components are installed into.

citadel CitadelComponentSpec
certManager CertManagerComponentSpec
nodeAgent NodeAgentComponentSpec

SidecarInjectorComponentSpec

Configuration options for the sidecar injector component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

TCPSocketAction

Mirrors k8s.io.api.core.v1.TCPSocketAction for unmarshaling

Field Type Description
port TypeIntOrStringForPB
host string

TelemetryComponentSpec

Configuration options for the telemetry component.

Field Type Description
enabled google.protobuf.BoolValue
namespace string
k8s KubernetesResourcesSpec

TelemetryFeatureSpec

Configuration options for the telemetry feature.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether telemetry is installed. Must be enabled to enable any sub-component.

components TelemetryFeatureSpec.Components

TelemetryFeatureSpec.Components

Component specific config.

Field Type Description
namespace string

Namespace that all telemetry components are installed into.

telemetry TelemetryComponentSpec

TrafficManagementFeatureSpec

Configuration options for traffic management.

Field Type Description
enabled google.protobuf.BoolValue

Selects whether traffic management is installed. Must be enabled to enable any sub-component.

components TrafficManagementFeatureSpec.Components

TrafficManagementFeatureSpec.Components

Component specific config.

Field Type Description
namespace string

Namespace that all traffic management components are installed into.

pilot PilotComponentSpec
proxy ProxyComponentSpec

TypeIntOrStringForPB

GOTYPE: *IntOrStringForPB

TypeInterface

GOTYPE: interface{}

TypeMapStringInterface

GOTYPE: map[string]interface{}

k8s.io.api.autoscaling.v2beta1.HorizontalPodAutoscalerSpec

HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.

Field Type Description
scaleTargetRef k8s.io.api.autoscaling.v2beta1.CrossVersionObjectReference

scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.

minReplicas int32

minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available. +optional

maxReplicas int32

maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.

metrics k8s.io.api.autoscaling.v2beta1.MetricSpec[]

metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. +optional

k8s.io.api.core.v1.Affinity

Affinity is a group of affinity scheduling rules.

Field Type Description
nodeAffinity k8s.io.api.core.v1.NodeAffinity

Describes node affinity scheduling rules for the pod. +optional

podAffinity k8s.io.api.core.v1.PodAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). +optional

podAntiAffinity k8s.io.api.core.v1.PodAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). +optional

k8s.io.api.core.v1.EnvVar

EnvVar represents an environment variable present in a Container.

Field Type Description
name string

Name of the environment variable. Must be a C_IDENTIFIER.

value string

Variable references $(VARNAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VARNAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to “”. +optional

valueFrom k8s.io.api.core.v1.EnvVarSource

Source for the environment variable’s value. Cannot be used if value is not empty. +optional

k8s.io.api.core.v1.ServiceSpec

ServiceSpec describes the attributes that a user creates on a service.

Field Type Description
ports k8s.io.api.core.v1.ServicePort[]

The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies +patchMergeKey=port +patchStrategy=merge +listType=map +listMapKey=port +listMapKey=protocol

selector map<string, string>

Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/ +optional

clusterIP string

clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are “None”, empty string (“”), or a valid IP address. “None” can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies +optional

type string

type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. “ExternalName” maps to the specified externalName. “ClusterIP” allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is “None”, no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. “NodePort” builds on ClusterIP and allocates a port on every node which routes to the clusterIP. “LoadBalancer” builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types +optional

externalIPs string[]

externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. +optional

sessionAffinity string

Supports “ClientIP” and “None”. Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies +optional

loadBalancerIP string

Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. +optional

loadBalancerSourceRanges string[]

If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.” More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/ +optional

externalName string

externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName. +optional

externalTrafficPolicy string

externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. “Local” preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. “Cluster” obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading. +optional

healthCheckNodePort int32

healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local. +optional

publishNotReadyAddresses bool

publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet’s Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. +optional

sessionAffinityConfig k8s.io.api.core.v1.SessionAffinityConfig

sessionAffinityConfig contains the configurations of session affinity. +optional

ipFamily string

ipFamily specifies whether this Service has a preference for a particular IP family (e.g. IPv4 vs. IPv6). If a specific IP family is requested, the clusterIP field will be allocated from that family, if it is available in the cluster. If no IP family is requested, the cluster’s primary IP family will be used. Other IP fields (loadBalancerIP, loadBalancerSourceRanges, externalIPs) and controllers which allocate external load-balancers should use the same IP family. Endpoints for this Service will be of this family. This field is immutable after creation. Assigning a ServiceIPFamily not available in the cluster (e.g. IPv6 in IPv4 only cluster) is an error condition and will fail during clusterIP assignment. +optional

k8s.io.api.core.v1.Toleration

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

Field Type Description
key string

Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. +optional

operator string

Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. +optional

value string

Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. +optional

effect string

Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. +optional

tolerationSeconds int64

TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. +optional

k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector

A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.

Field Type Description
matchLabels map<string, string>

matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is “key”, the operator is “In”, and the values array contains only “value”. The requirements are ANDed. +optional

matchExpressions k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement[]

matchExpressions is a list of label selector requirements. The requirements are ANDed. +optional

k8sObjectOverlay

Patch for an existing k8s resource.

Field Type Description
apiVersion string

Resource API version.

kind string

Resource kind.

name string

Name of resource. Namespace is always the component namespace.

patches k8sObjectOverlay.PathValue[]

List of patches to apply to resource.

k8sObjectOverlay.PathValue

Field Type Description
path string

Path of the form a.b:c.e.:f Where b:c is a list element selector of the form key:value and :f is a list selector of the form :value. All path intermediate nodes must exist.

value TypeInterface

Value to add, delete or replace. For add, the path should be a new leaf. For delete, value should be unset. For replace, path should reference an existing node. All values are strings but are converted into appropriate type based on schema.