@@ -74,15 +74,15 @@ notes on specific resource objects for details.
Read / Write Status: Read or Update the Status for a resource object. The Status can only changed through these update operations.
WORKLOADS
-
Worloads resources are responsible for managing and running your containers on the cluster. Containers are created
-by Controllers through Pods. Pods run Containers and provide environmental dependencies such as shared or
-persistent storage Volumes and Configuration or Secret data injected into the
+
Worloads resources are responsible for managing and running your containers on the cluster. Containers are created
+by Controllers through Pods. Pods run Containers and provide environmental dependencies such as shared or
+persistent storage Volumes and Configuration or Secret data injected into the
container.
The most common Controllers are:
-
Deployments for stateless persistent apps (e.g. http servers)
-
StatefulSets for stateful persistent apps (e.g. databases)
-
Jobs for run-to-completion apps (e.g. batch jobs).
+
Deployments for stateless persistent apps (e.g. http servers)
+
StatefulSets for stateful persistent apps (e.g. databases)
+
Jobs for run-to-completion apps (e.g. batch jobs).
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands
List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
MinReadySeconds minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template
Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs
CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
@@ -7734,7 +7734,7 @@ $ kubectl get job example-job It is recommended that users create Pods only through a Controller, and not directly. See Controllers: Deployment, Job, or StatefulSet.
+
@@ -7742,7 +7742,7 @@ $ kubectl get job example-job
-Appears In PodList
+Appears In PodList
Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.
List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers
ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod
List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers
SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.
Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.
Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
@@ -12629,14 +12629,14 @@ Appears In ReplicationController Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
@@ -12651,7 +12651,7 @@ Appears In ReplicationController The number of available replicas (ready for at least minReadySeconds) for this replication controller.
Replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
ServiceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.
Template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
VolumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
Discovery and Load Balancing resources are responsible for stitching your workloads together into an accessible Loadbalanced Service. By default,
Workloads are only accessible within the cluster, and they must be exposed externally using a either
-a LoadBalancer or NodePortService. For development, internally accessible
+a LoadBalancer or NodePortService. For development, internally accessible
Workloads can be accessed via proxy through the api master using the kubectl proxy command.
Common resource types:
-
Services for providing a single ip endpoint loadbalanced across multiple Workload replicas.
-
Ingress for providing a https(s) endpoint http(s) routed to one or more Services
+
Services for providing a single ip endpoint loadbalanced across multiple Workload replicas.
+
Ingress for providing a https(s) endpoint http(s) routed to one or more Services
@@ -15401,7 +15401,7 @@ Workloads can be accessed via proxy through the api master using the kubec
},
]
+Appears In EndpointsList
The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.
TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.
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: http://kubernetes.io/docs/user-guide/services-firewalls
@@ -20819,9 +20819,9 @@ $ kubectl get service deployment-example Config and Storage resources are responsible for injecting data into your applications and persisting data externally to your container.
Common resource types:
-
ConfigMaps for providing text key value pairs injected into the application through environment variables, command line arguments, or files
-
Secrets for providing binary data injected into the application through files
-
Volumes for providing a filesystem external to the Container. Maybe shared across Containers within the same Pod and have a lifetime persisting beyond a Container or Pod.
+
ConfigMaps for providing text key value pairs injected into the application through environment variables, command line arguments, or files
+
Secrets for providing binary data injected into the application through files
+
Volumes for providing a filesystem external to the Container. Maybe shared across Containers within the same Pod and have a lifetime persisting beyond a Container or Pod.
@@ -20844,7 +20844,7 @@ $ kubectl get service deployment-example
ConfigMap holds configuration data for pods to consume.
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
@@ -25368,10 +25368,10 @@ Appears In PodPresetSpecHorizontalPodAutoscaler (HPA) for automatically scaling the replicacount of your workloads in response to load
+
HorizontalPodAutoscaler (HPA) for automatically scaling the replicacount of your workloads in response to load
PodDisruptionBudget for configuring how many replicas in a given workload maybe made concurrently unavailable when performing maintenance.
ThirdPartyResource for extending the Kubernetes APIs with your own types
-
Event for notification of resource lifecycle events in the cluster.
+
Event for notification of resource lifecycle events in the cluster.
reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.
@@ -30133,14 +30133,14 @@ Appears In PodDisruptionBudget An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".
A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.
DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capabiility in both DefaultAddCapabilities and RequiredDropCapabilities.
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.
Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.
ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#binding
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running
HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action
ServiceAccount binds together: a name, understood by users, and perhaps by peripheral systems, for an identity a principal that can be authenticated and authorized * a set of secrets
AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: http://kubernetes.io/docs/user-guide/secrets#manually-specifying-an-imagepullsecret
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.
Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
@@ -48663,7 +48663,7 @@ Appears In ThirdPartyResource Represents a Persistent Disk resource in AWS.
An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
@@ -50038,7 +50038,7 @@ The resulting set of endpoints can be viewed as:
a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
b: [ 10.10.1.1:309, 10.10.2.2:309 ]
+Appears In Endpoints
IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.
@@ -50697,7 +50697,7 @@ Appears In HandlerProbe Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The : delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.
List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.
This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.
A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
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.
PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key tches that of any node on which a pod of the set of pods is running
The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.
An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.
Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.
targetAverageValue is the the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if targetAverageValue was set in the corresponding metric specification.
currentAverageValue is the the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.
If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.
Ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end.
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.
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.
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.
lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.
Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
diff --git a/docs/api-reference/v1.6/navData.js b/docs/api-reference/v1.6/navData.js
index 31f9bf768f..3d24569082 100644
--- a/docs/api-reference/v1.6/navData.js
+++ b/docs/api-reference/v1.6/navData.js
@@ -1 +1 @@
-(function(){navData = {"toc":[{"section":"userinfo-v1beta1-authentication","subsections":[]},{"section":"tokenreview-v1beta1-authentication","subsections":[{"section":"-strong-write-operations-strong--640","subsections":[{"section":"create-641"}]}]},{"section":"subjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--638","subsections":[{"section":"create-639"}]}]},{"section":"subject-v1alpha1-rbac","subsections":[]},{"section":"storageclass-v1beta1-storage","subsections":[{"section":"-strong-read-operations-strong--633","subsections":[{"section":"watch-list-637"},{"section":"watch-636"},{"section":"list-635"},{"section":"read-634"}]},{"section":"-strong-write-operations-strong--627","subsections":[{"section":"delete-collection-632"},{"section":"delete-631"},{"section":"patch-630"},{"section":"replace-629"},{"section":"create-628"}]}]},{"section":"selfsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--625","subsections":[{"section":"create-626"}]}]},{"section":"scale-v1beta1-extensions","subsections":[]},{"section":"scale-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong--621","subsections":[{"section":"patch-scale-624"},{"section":"replace-scale-623"},{"section":"read-scale-622"}]}]},{"section":"rollbackconfig-v1beta1-extensions","subsections":[]},{"section":"roleref-v1alpha1-rbac","subsections":[]},{"section":"rolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--614","subsections":[{"section":"watch-list-all-namespaces-620"},{"section":"watch-list-619"},{"section":"watch-618"},{"section":"list-all-namespaces-617"},{"section":"list-616"},{"section":"read-615"}]},{"section":"-strong-write-operations-strong--608","subsections":[{"section":"delete-collection-613"},{"section":"delete-612"},{"section":"patch-611"},{"section":"replace-610"},{"section":"create-609"}]}]},{"section":"role-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--601","subsections":[{"section":"watch-list-all-namespaces-607"},{"section":"watch-list-606"},{"section":"watch-605"},{"section":"list-all-namespaces-604"},{"section":"list-603"},{"section":"read-602"}]},{"section":"-strong-write-operations-strong--595","subsections":[{"section":"delete-collection-600"},{"section":"delete-599"},{"section":"patch-598"},{"section":"replace-597"},{"section":"create-596"}]}]},{"section":"resourceattributes-v1beta1-authorization","subsections":[]},{"section":"policyrule-v1alpha1-rbac","subsections":[]},{"section":"nonresourceattributes-v1beta1-authorization","subsections":[]},{"section":"localsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--593","subsections":[{"section":"create-594"}]}]},{"section":"horizontalpodautoscaler-v2alpha1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--589","subsections":[{"section":"replace-status-592"},{"section":"read-status-591"},{"section":"patch-status-590"}]},{"section":"-strong-read-operations-strong--582","subsections":[{"section":"watch-list-all-namespaces-588"},{"section":"watch-list-587"},{"section":"watch-586"},{"section":"list-all-namespaces-585"},{"section":"list-584"},{"section":"read-583"}]},{"section":"-strong-write-operations-strong--576","subsections":[{"section":"delete-collection-581"},{"section":"delete-580"},{"section":"patch-579"},{"section":"replace-578"},{"section":"create-577"}]}]},{"section":"deploymentcondition-v1beta1-extensions","subsections":[]},{"section":"deployment-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--571","subsections":[{"section":"rollback-575"},{"section":"patch-scale-574"},{"section":"replace-scale-573"},{"section":"read-scale-572"}]},{"section":"-strong-status-operations-strong--567","subsections":[{"section":"replace-status-570"},{"section":"read-status-569"},{"section":"patch-status-568"}]},{"section":"-strong-read-operations-strong--560","subsections":[{"section":"watch-list-all-namespaces-566"},{"section":"watch-list-565"},{"section":"watch-564"},{"section":"list-all-namespaces-563"},{"section":"list-562"},{"section":"read-561"}]},{"section":"-strong-write-operations-strong--554","subsections":[{"section":"delete-collection-559"},{"section":"delete-558"},{"section":"patch-557"},{"section":"replace-556"},{"section":"create-555"}]}]},{"section":"crossversionobjectreference-v2alpha1-autoscaling","subsections":[]},{"section":"clusterrolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--549","subsections":[{"section":"watch-list-553"},{"section":"watch-552"},{"section":"list-551"},{"section":"read-550"}]},{"section":"-strong-write-operations-strong--543","subsections":[{"section":"delete-collection-548"},{"section":"delete-547"},{"section":"patch-546"},{"section":"replace-545"},{"section":"create-544"}]}]},{"section":"clusterrole-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--538","subsections":[{"section":"watch-list-542"},{"section":"watch-541"},{"section":"list-540"},{"section":"read-539"}]},{"section":"-strong-write-operations-strong--532","subsections":[{"section":"delete-collection-537"},{"section":"delete-536"},{"section":"patch-535"},{"section":"replace-534"},{"section":"create-533"}]}]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"weightedpodaffinityterm-v1-core"},{"section":"watchevent-v1-meta"},{"section":"vspherevirtualdiskvolumesource-v1-core"},{"section":"volumeprojection-v1-core"},{"section":"volumemount-v1-core"},{"section":"userinfo-v1-authentication"},{"section":"toleration-v1-core"},{"section":"time-v1-meta"},{"section":"taint-v1-core"},{"section":"tcpsocketaction-v1-core"},{"section":"supplementalgroupsstrategyoptions-v1beta1-extensions"},{"section":"subject-v1beta1-rbac"},{"section":"statusdetails-v1-meta"},{"section":"statuscause-v1-meta"},{"section":"status-v1-meta"},{"section":"serviceport-v1-core"},{"section":"serveraddressbyclientcidr-v1-meta"},{"section":"securitycontext-v1-core"},{"section":"secretvolumesource-v1-core"},{"section":"secretprojection-v1-core"},{"section":"secretkeyselector-v1-core"},{"section":"secretenvsource-v1-core"},{"section":"scaleiovolumesource-v1-core"},{"section":"scale-v1-autoscaling"},{"section":"selinuxstrategyoptions-v1beta1-extensions"},{"section":"selinuxoptions-v1-core"},{"section":"runasuserstrategyoptions-v1beta1-extensions"},{"section":"rollbackconfig-v1beta1-apps"},{"section":"roleref-v1beta1-rbac"},{"section":"resourcerequirements-v1-core"},{"section":"resourcemetricstatus-v2alpha1-autoscaling"},{"section":"resourcemetricsource-v2alpha1-autoscaling"},{"section":"resourcefieldselector-v1-core"},{"section":"resourceattributes-v1-authorization"},{"section":"replicationcontrollercondition-v1-core"},{"section":"replicasetcondition-v1beta1-extensions"},{"section":"rbdvolumesource-v1-core"},{"section":"quobytevolumesource-v1-core"},{"section":"quantity-resource-core"},{"section":"projectedvolumesource-v1-core"},{"section":"probe-v1-core"},{"section":"preferredschedulingterm-v1-core"},{"section":"preconditions-v1-meta"},{"section":"portworxvolumesource-v1-core"},{"section":"policyrule-v1beta1-rbac"},{"section":"podsmetricstatus-v2alpha1-autoscaling"},{"section":"podsmetricsource-v2alpha1-autoscaling"},{"section":"podsecuritycontext-v1-core"},{"section":"podcondition-v1-core"},{"section":"podantiaffinity-v1-core"},{"section":"podaffinityterm-v1-core"},{"section":"podaffinity-v1-core"},{"section":"photonpersistentdiskvolumesource-v1-core"},{"section":"persistentvolumeclaimvolumesource-v1-core"},{"section":"patch-v1-meta"},{"section":"ownerreference-v1-meta"},{"section":"objectreference-v1-core"},{"section":"objectmetricstatus-v2alpha1-autoscaling"},{"section":"objectmetricsource-v2alpha1-autoscaling"},{"section":"objectmeta-v1-meta"},{"section":"objectfieldselector-v1-core"},{"section":"nonresourceattributes-v1-authorization"},{"section":"nodesysteminfo-v1-core"},{"section":"nodeselectorterm-v1-core"},{"section":"nodeselectorrequirement-v1-core"},{"section":"nodeselector-v1-core"},{"section":"nodedaemonendpoints-v1-core"},{"section":"nodecondition-v1-core"},{"section":"nodeaffinity-v1-core"},{"section":"nodeaddress-v1-core"},{"section":"networkpolicyport-v1beta1-extensions"},{"section":"networkpolicypeer-v1beta1-extensions"},{"section":"networkpolicyingressrule-v1beta1-extensions"},{"section":"nfsvolumesource-v1-core"},{"section":"metricstatus-v2alpha1-autoscaling"},{"section":"metricspec-v2alpha1-autoscaling"},{"section":"localobjectreference-v1-core"},{"section":"loadbalancerstatus-v1-core"},{"section":"loadbalanceringress-v1-core"},{"section":"listmeta-v1-meta"},{"section":"limitrangeitem-v1-core"},{"section":"lifecycle-v1-core"},{"section":"labelselectorrequirement-v1-meta"},{"section":"labelselector-v1-meta"},{"section":"keytopath-v1-core"},{"section":"jobtemplatespec-v2alpha1-batch"},{"section":"jobcondition-v1-batch"},{"section":"ingresstls-v1beta1-extensions"},{"section":"ingressrule-v1beta1-extensions"},{"section":"ingressbackend-v1beta1-extensions"},{"section":"iscsivolumesource-v1-core"},{"section":"idrange-v1beta1-extensions"},{"section":"hostportrange-v1beta1-extensions"},{"section":"hostpathvolumesource-v1-core"},{"section":"handler-v1-core"},{"section":"httpingressrulevalue-v1beta1-extensions"},{"section":"httpingresspath-v1beta1-extensions"},{"section":"httpheader-v1-core"},{"section":"httpgetaction-v1-core"},{"section":"groupversionfordiscovery-v1-meta"},{"section":"glusterfsvolumesource-v1-core"},{"section":"gitrepovolumesource-v1-core"},{"section":"gcepersistentdiskvolumesource-v1-core"},{"section":"flockervolumesource-v1-core"},{"section":"flexvolumesource-v1-core"},{"section":"fsgroupstrategyoptions-v1beta1-extensions"},{"section":"fcvolumesource-v1-core"},{"section":"execaction-v1-core"},{"section":"eviction-v1beta1-policy"},{"section":"eventsource-v1-core"},{"section":"envvarsource-v1-core"},{"section":"envvar-v1-core"},{"section":"envfromsource-v1-core"},{"section":"endpointsubset-v1-core"},{"section":"endpointport-v1-core"},{"section":"endpointaddress-v1-core"},{"section":"emptydirvolumesource-v1-core"},{"section":"downwardapivolumesource-v1-core"},{"section":"downwardapivolumefile-v1-core"},{"section":"downwardapiprojection-v1-core"},{"section":"deploymentcondition-v1beta1-apps"},{"section":"deleteoptions-v1-meta"},{"section":"daemonsetupdatestrategy-v1beta1-extensions"},{"section":"daemonendpoint-v1-core"},{"section":"crossversionobjectreference-v1-autoscaling"},{"section":"containerstatewaiting-v1-core"},{"section":"containerstateterminated-v1-core"},{"section":"containerstaterunning-v1-core"},{"section":"containerstate-v1-core"},{"section":"containerport-v1-core"},{"section":"containerimage-v1-core"},{"section":"configmapvolumesource-v1-core"},{"section":"configmapprojection-v1-core"},{"section":"configmapkeyselector-v1-core"},{"section":"configmapenvsource-v1-core"},{"section":"componentcondition-v1-core"},{"section":"cindervolumesource-v1-core"},{"section":"certificatesigningrequestcondition-v1beta1-certificates"},{"section":"cephfsvolumesource-v1-core"},{"section":"capabilities-v1-core"},{"section":"azurefilevolumesource-v1-core"},{"section":"azurediskvolumesource-v1-core"},{"section":"attachedvolume-v1-core"},{"section":"affinity-v1-core"},{"section":"awselasticblockstorevolumesource-v1-core"},{"section":"apiversions-v1-meta"},{"section":"apiversion-v1beta1-extensions"},{"section":"apiresource-v1-meta"},{"section":"apigroup-v1-meta"}]},{"section":"networkpolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--525","subsections":[{"section":"watch-list-all-namespaces-531"},{"section":"watch-list-530"},{"section":"watch-529"},{"section":"list-all-namespaces-528"},{"section":"list-527"},{"section":"read-526"}]},{"section":"-strong-write-operations-strong--519","subsections":[{"section":"delete-collection-524"},{"section":"delete-523"},{"section":"patch-522"},{"section":"replace-521"},{"section":"create-520"}]}]},{"section":"tokenreview-v1-authentication","subsections":[{"section":"-strong-write-operations-strong--517","subsections":[{"section":"create-518"}]}]},{"section":"subjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--515","subsections":[{"section":"create-516"}]}]},{"section":"serviceaccount-v1-core","subsections":[{"section":"-strong-read-operations-strong--508","subsections":[{"section":"watch-list-all-namespaces-514"},{"section":"watch-list-513"},{"section":"watch-512"},{"section":"list-all-namespaces-511"},{"section":"list-510"},{"section":"read-509"}]},{"section":"-strong-write-operations-strong--502","subsections":[{"section":"delete-collection-507"},{"section":"delete-506"},{"section":"patch-505"},{"section":"replace-504"},{"section":"create-503"}]}]},{"section":"selfsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--500","subsections":[{"section":"create-501"}]}]},{"section":"rolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--493","subsections":[{"section":"watch-list-all-namespaces-499"},{"section":"watch-list-498"},{"section":"watch-497"},{"section":"list-all-namespaces-496"},{"section":"list-495"},{"section":"read-494"}]},{"section":"-strong-write-operations-strong--487","subsections":[{"section":"delete-collection-492"},{"section":"delete-491"},{"section":"patch-490"},{"section":"replace-489"},{"section":"create-488"}]}]},{"section":"role-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--480","subsections":[{"section":"watch-list-all-namespaces-486"},{"section":"watch-list-485"},{"section":"watch-484"},{"section":"list-all-namespaces-483"},{"section":"list-482"},{"section":"read-481"}]},{"section":"-strong-write-operations-strong--474","subsections":[{"section":"delete-collection-479"},{"section":"delete-478"},{"section":"patch-477"},{"section":"replace-476"},{"section":"create-475"}]}]},{"section":"resourcequota-v1-core","subsections":[{"section":"-strong-status-operations-strong--470","subsections":[{"section":"replace-status-473"},{"section":"read-status-472"},{"section":"patch-status-471"}]},{"section":"-strong-read-operations-strong--463","subsections":[{"section":"watch-list-all-namespaces-469"},{"section":"watch-list-468"},{"section":"watch-467"},{"section":"list-all-namespaces-466"},{"section":"list-465"},{"section":"read-464"}]},{"section":"-strong-write-operations-strong--457","subsections":[{"section":"delete-collection-462"},{"section":"delete-461"},{"section":"patch-460"},{"section":"replace-459"},{"section":"create-458"}]}]},{"section":"persistentvolume-v1-core","subsections":[{"section":"-strong-status-operations-strong--453","subsections":[{"section":"replace-status-456"},{"section":"read-status-455"},{"section":"patch-status-454"}]},{"section":"-strong-read-operations-strong--448","subsections":[{"section":"watch-list-452"},{"section":"watch-451"},{"section":"list-450"},{"section":"read-449"}]},{"section":"-strong-write-operations-strong--442","subsections":[{"section":"delete-collection-447"},{"section":"delete-446"},{"section":"patch-445"},{"section":"replace-444"},{"section":"create-443"}]}]},{"section":"node-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--423","subsections":[{"section":"replace-proxy-path-441"},{"section":"replace-proxy-440"},{"section":"replace-connect-proxy-path-439"},{"section":"replace-connect-proxy-438"},{"section":"head-connect-proxy-path-437"},{"section":"head-connect-proxy-436"},{"section":"get-proxy-path-435"},{"section":"get-proxy-434"},{"section":"get-connect-proxy-path-433"},{"section":"get-connect-proxy-432"},{"section":"delete-proxy-path-431"},{"section":"delete-proxy-430"},{"section":"delete-connect-proxy-path-429"},{"section":"delete-connect-proxy-428"},{"section":"create-proxy-path-427"},{"section":"create-proxy-426"},{"section":"create-connect-proxy-path-425"},{"section":"create-connect-proxy-424"}]},{"section":"-strong-status-operations-strong--419","subsections":[{"section":"replace-status-422"},{"section":"read-status-421"},{"section":"patch-status-420"}]},{"section":"-strong-read-operations-strong--414","subsections":[{"section":"watch-list-418"},{"section":"watch-417"},{"section":"list-416"},{"section":"read-415"}]},{"section":"-strong-write-operations-strong--408","subsections":[{"section":"delete-collection-413"},{"section":"delete-412"},{"section":"patch-411"},{"section":"replace-410"},{"section":"create-409"}]}]},{"section":"namespace-v1-core","subsections":[{"section":"-strong-status-operations-strong--404","subsections":[{"section":"replace-status-407"},{"section":"read-status-406"},{"section":"patch-status-405"}]},{"section":"-strong-read-operations-strong--399","subsections":[{"section":"watch-list-403"},{"section":"watch-402"},{"section":"list-401"},{"section":"read-400"}]},{"section":"-strong-write-operations-strong--393","subsections":[{"section":"delete-collection-398"},{"section":"delete-397"},{"section":"patch-396"},{"section":"replace-395"},{"section":"create-394"}]}]},{"section":"localsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--391","subsections":[{"section":"create-392"}]}]},{"section":"componentstatus-v1-core","subsections":[{"section":"-strong-read-operations-strong--388","subsections":[{"section":"list-390"},{"section":"read-389"}]}]},{"section":"clusterrolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--383","subsections":[{"section":"watch-list-387"},{"section":"watch-386"},{"section":"list-385"},{"section":"read-384"}]},{"section":"-strong-write-operations-strong--377","subsections":[{"section":"delete-collection-382"},{"section":"delete-381"},{"section":"patch-380"},{"section":"replace-379"},{"section":"create-378"}]}]},{"section":"clusterrole-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--372","subsections":[{"section":"watch-list-376"},{"section":"watch-375"},{"section":"list-374"},{"section":"read-373"}]},{"section":"-strong-write-operations-strong--366","subsections":[{"section":"delete-collection-371"},{"section":"delete-370"},{"section":"patch-369"},{"section":"replace-368"},{"section":"create-367"}]}]},{"section":"certificatesigningrequest-v1beta1-certificates","subsections":[{"section":"-strong-status-operations-strong--364","subsections":[{"section":"replace-status-365"}]},{"section":"-strong-read-operations-strong--359","subsections":[{"section":"watch-list-363"},{"section":"watch-362"},{"section":"list-361"},{"section":"read-360"}]},{"section":"-strong-write-operations-strong--353","subsections":[{"section":"delete-collection-358"},{"section":"delete-357"},{"section":"patch-356"},{"section":"replace-355"},{"section":"create-354"}]}]},{"section":"binding-v1-core","subsections":[{"section":"-strong-write-operations-strong--351","subsections":[{"section":"create-352"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"podsecuritypolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--346","subsections":[{"section":"watch-list-350"},{"section":"watch-349"},{"section":"list-348"},{"section":"read-347"}]},{"section":"-strong-write-operations-strong--340","subsections":[{"section":"delete-collection-345"},{"section":"delete-344"},{"section":"patch-343"},{"section":"replace-342"},{"section":"create-341"}]}]},{"section":"podpreset-v1alpha1-settings","subsections":[{"section":"-strong-read-operations-strong--333","subsections":[{"section":"watch-list-all-namespaces-339"},{"section":"watch-list-338"},{"section":"watch-337"},{"section":"list-all-namespaces-336"},{"section":"list-335"},{"section":"read-334"}]},{"section":"-strong-write-operations-strong--327","subsections":[{"section":"delete-collection-332"},{"section":"delete-331"},{"section":"patch-330"},{"section":"replace-329"},{"section":"create-328"}]}]},{"section":"thirdpartyresource-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--322","subsections":[{"section":"watch-list-326"},{"section":"watch-325"},{"section":"list-324"},{"section":"read-323"}]},{"section":"-strong-write-operations-strong--316","subsections":[{"section":"delete-collection-321"},{"section":"delete-320"},{"section":"patch-319"},{"section":"replace-318"},{"section":"create-317"}]}]},{"section":"poddisruptionbudget-v1beta1-policy","subsections":[{"section":"-strong-status-operations-strong--312","subsections":[{"section":"replace-status-315"},{"section":"read-status-314"},{"section":"patch-status-313"}]},{"section":"-strong-read-operations-strong--305","subsections":[{"section":"watch-list-all-namespaces-311"},{"section":"watch-list-310"},{"section":"watch-309"},{"section":"list-all-namespaces-308"},{"section":"list-307"},{"section":"read-306"}]},{"section":"-strong-write-operations-strong--299","subsections":[{"section":"delete-collection-304"},{"section":"delete-303"},{"section":"patch-302"},{"section":"replace-301"},{"section":"create-300"}]}]},{"section":"podtemplate-v1-core","subsections":[{"section":"-strong-read-operations-strong--292","subsections":[{"section":"watch-list-all-namespaces-298"},{"section":"watch-list-297"},{"section":"watch-296"},{"section":"list-all-namespaces-295"},{"section":"list-294"},{"section":"read-293"}]},{"section":"-strong-write-operations-strong--286","subsections":[{"section":"delete-collection-291"},{"section":"delete-290"},{"section":"patch-289"},{"section":"replace-288"},{"section":"create-287"}]}]},{"section":"horizontalpodautoscaler-v1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--282","subsections":[{"section":"replace-status-285"},{"section":"read-status-284"},{"section":"patch-status-283"}]},{"section":"-strong-read-operations-strong--275","subsections":[{"section":"watch-list-all-namespaces-281"},{"section":"watch-list-280"},{"section":"watch-279"},{"section":"list-all-namespaces-278"},{"section":"list-277"},{"section":"read-276"}]},{"section":"-strong-write-operations-strong--269","subsections":[{"section":"delete-collection-274"},{"section":"delete-273"},{"section":"patch-272"},{"section":"replace-271"},{"section":"create-270"}]}]},{"section":"limitrange-v1-core","subsections":[{"section":"-strong-read-operations-strong--262","subsections":[{"section":"watch-list-all-namespaces-268"},{"section":"watch-list-267"},{"section":"watch-266"},{"section":"list-all-namespaces-265"},{"section":"list-264"},{"section":"read-263"}]},{"section":"-strong-write-operations-strong--256","subsections":[{"section":"delete-collection-261"},{"section":"delete-260"},{"section":"patch-259"},{"section":"replace-258"},{"section":"create-257"}]}]},{"section":"event-v1-core","subsections":[{"section":"-strong-read-operations-strong--249","subsections":[{"section":"watch-list-all-namespaces-255"},{"section":"watch-list-254"},{"section":"watch-253"},{"section":"list-all-namespaces-252"},{"section":"list-251"},{"section":"read-250"}]},{"section":"-strong-write-operations-strong--243","subsections":[{"section":"delete-collection-248"},{"section":"delete-247"},{"section":"patch-246"},{"section":"replace-245"},{"section":"create-244"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1-core","subsections":[]},{"section":"storageclass-v1-storage","subsections":[{"section":"-strong-read-operations-strong--238","subsections":[{"section":"watch-list-242"},{"section":"watch-241"},{"section":"list-240"},{"section":"read-239"}]},{"section":"-strong-write-operations-strong--232","subsections":[{"section":"delete-collection-237"},{"section":"delete-236"},{"section":"patch-235"},{"section":"replace-234"},{"section":"create-233"}]}]},{"section":"persistentvolumeclaim-v1-core","subsections":[{"section":"-strong-status-operations-strong--228","subsections":[{"section":"replace-status-231"},{"section":"read-status-230"},{"section":"patch-status-229"}]},{"section":"-strong-read-operations-strong--221","subsections":[{"section":"watch-list-all-namespaces-227"},{"section":"watch-list-226"},{"section":"watch-225"},{"section":"list-all-namespaces-224"},{"section":"list-223"},{"section":"read-222"}]},{"section":"-strong-write-operations-strong--215","subsections":[{"section":"delete-collection-220"},{"section":"delete-219"},{"section":"patch-218"},{"section":"replace-217"},{"section":"create-216"}]}]},{"section":"secret-v1-core","subsections":[{"section":"-strong-read-operations-strong--208","subsections":[{"section":"watch-list-all-namespaces-214"},{"section":"watch-list-213"},{"section":"watch-212"},{"section":"list-all-namespaces-211"},{"section":"list-210"},{"section":"read-209"}]},{"section":"-strong-write-operations-strong--202","subsections":[{"section":"delete-collection-207"},{"section":"delete-206"},{"section":"patch-205"},{"section":"replace-204"},{"section":"create-203"}]}]},{"section":"configmap-v1-core","subsections":[{"section":"-strong-read-operations-strong--195","subsections":[{"section":"watch-list-all-namespaces-201"},{"section":"watch-list-200"},{"section":"watch-199"},{"section":"list-all-namespaces-198"},{"section":"list-197"},{"section":"read-196"}]},{"section":"-strong-write-operations-strong--189","subsections":[{"section":"delete-collection-194"},{"section":"delete-193"},{"section":"patch-192"},{"section":"replace-191"},{"section":"create-190"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--170","subsections":[{"section":"replace-proxy-path-188"},{"section":"replace-proxy-187"},{"section":"replace-connect-proxy-path-186"},{"section":"replace-connect-proxy-185"},{"section":"head-connect-proxy-path-184"},{"section":"head-connect-proxy-183"},{"section":"get-proxy-path-182"},{"section":"get-proxy-181"},{"section":"get-connect-proxy-path-180"},{"section":"get-connect-proxy-179"},{"section":"delete-proxy-path-178"},{"section":"delete-proxy-177"},{"section":"delete-connect-proxy-path-176"},{"section":"delete-connect-proxy-175"},{"section":"create-proxy-path-174"},{"section":"create-proxy-173"},{"section":"create-connect-proxy-path-172"},{"section":"create-connect-proxy-171"}]},{"section":"-strong-status-operations-strong--166","subsections":[{"section":"replace-status-169"},{"section":"read-status-168"},{"section":"patch-status-167"}]},{"section":"-strong-read-operations-strong--159","subsections":[{"section":"watch-list-all-namespaces-165"},{"section":"watch-list-164"},{"section":"watch-163"},{"section":"list-all-namespaces-162"},{"section":"list-161"},{"section":"read-160"}]},{"section":"-strong-write-operations-strong--154","subsections":[{"section":"delete-158"},{"section":"patch-157"},{"section":"replace-156"},{"section":"create-155"}]}]},{"section":"ingress-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--150","subsections":[{"section":"replace-status-153"},{"section":"read-status-152"},{"section":"patch-status-151"}]},{"section":"-strong-read-operations-strong--143","subsections":[{"section":"watch-list-all-namespaces-149"},{"section":"watch-list-148"},{"section":"watch-147"},{"section":"list-all-namespaces-146"},{"section":"list-145"},{"section":"read-144"}]},{"section":"-strong-write-operations-strong--137","subsections":[{"section":"delete-collection-142"},{"section":"delete-141"},{"section":"patch-140"},{"section":"replace-139"},{"section":"create-138"}]}]},{"section":"endpoints-v1-core","subsections":[{"section":"-strong-read-operations-strong--130","subsections":[{"section":"watch-list-all-namespaces-136"},{"section":"watch-list-135"},{"section":"watch-134"},{"section":"list-all-namespaces-133"},{"section":"list-132"},{"section":"read-131"}]},{"section":"-strong-write-operations-strong--124","subsections":[{"section":"delete-collection-129"},{"section":"delete-128"},{"section":"patch-127"},{"section":"replace-126"},{"section":"create-125"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--120","subsections":[{"section":"replace-status-123"},{"section":"read-status-122"},{"section":"patch-status-121"}]},{"section":"-strong-read-operations-strong--113","subsections":[{"section":"watch-list-all-namespaces-119"},{"section":"watch-list-118"},{"section":"watch-117"},{"section":"list-all-namespaces-116"},{"section":"list-115"},{"section":"read-114"}]},{"section":"-strong-write-operations-strong--107","subsections":[{"section":"delete-collection-112"},{"section":"delete-111"},{"section":"patch-110"},{"section":"replace-109"},{"section":"create-108"}]}]},{"section":"replicationcontroller-v1-core","subsections":[{"section":"-strong-status-operations-strong--103","subsections":[{"section":"replace-status-106"},{"section":"read-status-105"},{"section":"patch-status-104"}]},{"section":"-strong-read-operations-strong--96","subsections":[{"section":"watch-list-all-namespaces-102"},{"section":"watch-list-101"},{"section":"watch-100"},{"section":"list-all-namespaces-99"},{"section":"list-98"},{"section":"read-97"}]},{"section":"-strong-write-operations-strong--90","subsections":[{"section":"delete-collection-95"},{"section":"delete-94"},{"section":"patch-93"},{"section":"replace-92"},{"section":"create-91"}]}]},{"section":"replicaset-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--89","subsections":[{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"section":"-strong-status-operations-strong--85","subsections":[{"section":"replace-status-88"},{"section":"read-status-87"},{"section":"patch-status-86"}]},{"section":"-strong-read-operations-strong--78","subsections":[{"section":"watch-list-all-namespaces-84"},{"section":"watch-list-83"},{"section":"watch-82"},{"section":"list-all-namespaces-81"},{"section":"list-80"},{"section":"read-79"}]},{"section":"-strong-write-operations-strong--72","subsections":[{"section":"delete-collection-77"},{"section":"delete-76"},{"section":"patch-75"},{"section":"replace-74"},{"section":"create-73"}]}]},{"section":"pod-v1-core","subsections":[{"section":"-strong-misc-operations-strong--71","subsections":[{"section":"read-log"}]},{"section":"-strong-proxy-operations-strong-","subsections":[{"section":"replace-proxy-path"},{"section":"replace-proxy"},{"section":"replace-connect-proxy-path"},{"section":"replace-connect-proxy"},{"section":"head-connect-proxy-path"},{"section":"head-connect-proxy"},{"section":"get-proxy-path"},{"section":"get-proxy"},{"section":"get-connect-proxy-path"},{"section":"get-connect-proxy"},{"section":"get-connect-portforward"},{"section":"delete-proxy-path"},{"section":"delete-proxy"},{"section":"delete-connect-proxy-path"},{"section":"delete-connect-proxy"},{"section":"create-proxy-path"},{"section":"create-proxy"},{"section":"create-connect-proxy-path"},{"section":"create-connect-proxy"},{"section":"create-connect-portforward"}]},{"section":"-strong-status-operations-strong--67","subsections":[{"section":"replace-status-70"},{"section":"read-status-69"},{"section":"patch-status-68"}]},{"section":"-strong-read-operations-strong--60","subsections":[{"section":"watch-list-all-namespaces-66"},{"section":"watch-list-65"},{"section":"watch-64"},{"section":"list-all-namespaces-63"},{"section":"list-62"},{"section":"read-61"}]},{"section":"-strong-write-operations-strong--54","subsections":[{"section":"delete-collection-59"},{"section":"delete-58"},{"section":"patch-57"},{"section":"replace-56"},{"section":"create-55"}]}]},{"section":"job-v1-batch","subsections":[{"section":"-strong-status-operations-strong--50","subsections":[{"section":"replace-status-53"},{"section":"read-status-52"},{"section":"patch-status-51"}]},{"section":"-strong-read-operations-strong--43","subsections":[{"section":"watch-list-all-namespaces-49"},{"section":"watch-list-48"},{"section":"watch-47"},{"section":"list-all-namespaces-46"},{"section":"list-45"},{"section":"read-44"}]},{"section":"-strong-write-operations-strong--37","subsections":[{"section":"delete-collection-42"},{"section":"delete-41"},{"section":"patch-40"},{"section":"replace-39"},{"section":"create-38"}]}]},{"section":"deployment-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"}]},{"section":"-strong-status-operations-strong--33","subsections":[{"section":"replace-status-36"},{"section":"read-status-35"},{"section":"patch-status-34"}]},{"section":"-strong-read-operations-strong--26","subsections":[{"section":"watch-list-all-namespaces-32"},{"section":"watch-list-31"},{"section":"watch-30"},{"section":"list-all-namespaces-29"},{"section":"list-28"},{"section":"read-27"}]},{"section":"-strong-write-operations-strong--20","subsections":[{"section":"delete-collection-25"},{"section":"delete-24"},{"section":"patch-23"},{"section":"replace-22"},{"section":"create-21"}]}]},{"section":"daemonset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--16","subsections":[{"section":"replace-status-19"},{"section":"read-status-18"},{"section":"patch-status-17"}]},{"section":"-strong-read-operations-strong--9","subsections":[{"section":"watch-list-all-namespaces-15"},{"section":"watch-list-14"},{"section":"watch-13"},{"section":"list-all-namespaces-12"},{"section":"list-11"},{"section":"read-10"}]},{"section":"-strong-write-operations-strong--3","subsections":[{"section":"delete-collection-8"},{"section":"delete-7"},{"section":"patch-6"},{"section":"replace-5"},{"section":"create-4"}]}]},{"section":"cronjob-v2alpha1-batch","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"section":"watch-list"},{"section":"watch"},{"section":"list-all-namespaces"},{"section":"list"},{"section":"read-2"}]},{"section":"-strong-write-operations-strong-","subsections":[{"section":"delete-collection"},{"section":"delete-1"},{"section":"patch"},{"section":"replace"},{"section":"create"}]}]},{"section":"container-v1-core","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["userinfo-v1beta1-authentication","create-641","-strong-write-operations-strong--640","tokenreview-v1beta1-authentication","create-639","-strong-write-operations-strong--638","subjectaccessreview-v1beta1-authorization","subject-v1alpha1-rbac","watch-list-637","watch-636","list-635","read-634","-strong-read-operations-strong--633","delete-collection-632","delete-631","patch-630","replace-629","create-628","-strong-write-operations-strong--627","storageclass-v1beta1-storage","create-626","-strong-write-operations-strong--625","selfsubjectaccessreview-v1beta1-authorization","scale-v1beta1-extensions","patch-scale-624","replace-scale-623","read-scale-622","-strong-misc-operations-strong--621","scale-v1beta1-apps","rollbackconfig-v1beta1-extensions","roleref-v1alpha1-rbac","watch-list-all-namespaces-620","watch-list-619","watch-618","list-all-namespaces-617","list-616","read-615","-strong-read-operations-strong--614","delete-collection-613","delete-612","patch-611","replace-610","create-609","-strong-write-operations-strong--608","rolebinding-v1alpha1-rbac","watch-list-all-namespaces-607","watch-list-606","watch-605","list-all-namespaces-604","list-603","read-602","-strong-read-operations-strong--601","delete-collection-600","delete-599","patch-598","replace-597","create-596","-strong-write-operations-strong--595","role-v1alpha1-rbac","resourceattributes-v1beta1-authorization","policyrule-v1alpha1-rbac","nonresourceattributes-v1beta1-authorization","create-594","-strong-write-operations-strong--593","localsubjectaccessreview-v1beta1-authorization","replace-status-592","read-status-591","patch-status-590","-strong-status-operations-strong--589","watch-list-all-namespaces-588","watch-list-587","watch-586","list-all-namespaces-585","list-584","read-583","-strong-read-operations-strong--582","delete-collection-581","delete-580","patch-579","replace-578","create-577","-strong-write-operations-strong--576","horizontalpodautoscaler-v2alpha1-autoscaling","deploymentcondition-v1beta1-extensions","rollback-575","patch-scale-574","replace-scale-573","read-scale-572","-strong-misc-operations-strong--571","replace-status-570","read-status-569","patch-status-568","-strong-status-operations-strong--567","watch-list-all-namespaces-566","watch-list-565","watch-564","list-all-namespaces-563","list-562","read-561","-strong-read-operations-strong--560","delete-collection-559","delete-558","patch-557","replace-556","create-555","-strong-write-operations-strong--554","deployment-v1beta1-extensions","crossversionobjectreference-v2alpha1-autoscaling","watch-list-553","watch-552","list-551","read-550","-strong-read-operations-strong--549","delete-collection-548","delete-547","patch-546","replace-545","create-544","-strong-write-operations-strong--543","clusterrolebinding-v1alpha1-rbac","watch-list-542","watch-541","list-540","read-539","-strong-read-operations-strong--538","delete-collection-537","delete-536","patch-535","replace-534","create-533","-strong-write-operations-strong--532","clusterrole-v1alpha1-rbac","-strong-old-api-versions-strong-","weightedpodaffinityterm-v1-core","watchevent-v1-meta","vspherevirtualdiskvolumesource-v1-core","volumeprojection-v1-core","volumemount-v1-core","userinfo-v1-authentication","toleration-v1-core","time-v1-meta","taint-v1-core","tcpsocketaction-v1-core","supplementalgroupsstrategyoptions-v1beta1-extensions","subject-v1beta1-rbac","statusdetails-v1-meta","statuscause-v1-meta","status-v1-meta","serviceport-v1-core","serveraddressbyclientcidr-v1-meta","securitycontext-v1-core","secretvolumesource-v1-core","secretprojection-v1-core","secretkeyselector-v1-core","secretenvsource-v1-core","scaleiovolumesource-v1-core","scale-v1-autoscaling","selinuxstrategyoptions-v1beta1-extensions","selinuxoptions-v1-core","runasuserstrategyoptions-v1beta1-extensions","rollbackconfig-v1beta1-apps","roleref-v1beta1-rbac","resourcerequirements-v1-core","resourcemetricstatus-v2alpha1-autoscaling","resourcemetricsource-v2alpha1-autoscaling","resourcefieldselector-v1-core","resourceattributes-v1-authorization","replicationcontrollercondition-v1-core","replicasetcondition-v1beta1-extensions","rbdvolumesource-v1-core","quobytevolumesource-v1-core","quantity-resource-core","projectedvolumesource-v1-core","probe-v1-core","preferredschedulingterm-v1-core","preconditions-v1-meta","portworxvolumesource-v1-core","policyrule-v1beta1-rbac","podsmetricstatus-v2alpha1-autoscaling","podsmetricsource-v2alpha1-autoscaling","podsecuritycontext-v1-core","podcondition-v1-core","podantiaffinity-v1-core","podaffinityterm-v1-core","podaffinity-v1-core","photonpersistentdiskvolumesource-v1-core","persistentvolumeclaimvolumesource-v1-core","patch-v1-meta","ownerreference-v1-meta","objectreference-v1-core","objectmetricstatus-v2alpha1-autoscaling","objectmetricsource-v2alpha1-autoscaling","objectmeta-v1-meta","objectfieldselector-v1-core","nonresourceattributes-v1-authorization","nodesysteminfo-v1-core","nodeselectorterm-v1-core","nodeselectorrequirement-v1-core","nodeselector-v1-core","nodedaemonendpoints-v1-core","nodecondition-v1-core","nodeaffinity-v1-core","nodeaddress-v1-core","networkpolicyport-v1beta1-extensions","networkpolicypeer-v1beta1-extensions","networkpolicyingressrule-v1beta1-extensions","nfsvolumesource-v1-core","metricstatus-v2alpha1-autoscaling","metricspec-v2alpha1-autoscaling","localobjectreference-v1-core","loadbalancerstatus-v1-core","loadbalanceringress-v1-core","listmeta-v1-meta","limitrangeitem-v1-core","lifecycle-v1-core","labelselectorrequirement-v1-meta","labelselector-v1-meta","keytopath-v1-core","jobtemplatespec-v2alpha1-batch","jobcondition-v1-batch","ingresstls-v1beta1-extensions","ingressrule-v1beta1-extensions","ingressbackend-v1beta1-extensions","iscsivolumesource-v1-core","idrange-v1beta1-extensions","hostportrange-v1beta1-extensions","hostpathvolumesource-v1-core","handler-v1-core","httpingressrulevalue-v1beta1-extensions","httpingresspath-v1beta1-extensions","httpheader-v1-core","httpgetaction-v1-core","groupversionfordiscovery-v1-meta","glusterfsvolumesource-v1-core","gitrepovolumesource-v1-core","gcepersistentdiskvolumesource-v1-core","flockervolumesource-v1-core","flexvolumesource-v1-core","fsgroupstrategyoptions-v1beta1-extensions","fcvolumesource-v1-core","execaction-v1-core","eviction-v1beta1-policy","eventsource-v1-core","envvarsource-v1-core","envvar-v1-core","envfromsource-v1-core","endpointsubset-v1-core","endpointport-v1-core","endpointaddress-v1-core","emptydirvolumesource-v1-core","downwardapivolumesource-v1-core","downwardapivolumefile-v1-core","downwardapiprojection-v1-core","deploymentcondition-v1beta1-apps","deleteoptions-v1-meta","daemonsetupdatestrategy-v1beta1-extensions","daemonendpoint-v1-core","crossversionobjectreference-v1-autoscaling","containerstatewaiting-v1-core","containerstateterminated-v1-core","containerstaterunning-v1-core","containerstate-v1-core","containerport-v1-core","containerimage-v1-core","configmapvolumesource-v1-core","configmapprojection-v1-core","configmapkeyselector-v1-core","configmapenvsource-v1-core","componentcondition-v1-core","cindervolumesource-v1-core","certificatesigningrequestcondition-v1beta1-certificates","cephfsvolumesource-v1-core","capabilities-v1-core","azurefilevolumesource-v1-core","azurediskvolumesource-v1-core","attachedvolume-v1-core","affinity-v1-core","awselasticblockstorevolumesource-v1-core","apiversions-v1-meta","apiversion-v1beta1-extensions","apiresource-v1-meta","apigroup-v1-meta","-strong-definitions-strong-","watch-list-all-namespaces-531","watch-list-530","watch-529","list-all-namespaces-528","list-527","read-526","-strong-read-operations-strong--525","delete-collection-524","delete-523","patch-522","replace-521","create-520","-strong-write-operations-strong--519","networkpolicy-v1beta1-extensions","create-518","-strong-write-operations-strong--517","tokenreview-v1-authentication","create-516","-strong-write-operations-strong--515","subjectaccessreview-v1-authorization","watch-list-all-namespaces-514","watch-list-513","watch-512","list-all-namespaces-511","list-510","read-509","-strong-read-operations-strong--508","delete-collection-507","delete-506","patch-505","replace-504","create-503","-strong-write-operations-strong--502","serviceaccount-v1-core","create-501","-strong-write-operations-strong--500","selfsubjectaccessreview-v1-authorization","watch-list-all-namespaces-499","watch-list-498","watch-497","list-all-namespaces-496","list-495","read-494","-strong-read-operations-strong--493","delete-collection-492","delete-491","patch-490","replace-489","create-488","-strong-write-operations-strong--487","rolebinding-v1beta1-rbac","watch-list-all-namespaces-486","watch-list-485","watch-484","list-all-namespaces-483","list-482","read-481","-strong-read-operations-strong--480","delete-collection-479","delete-478","patch-477","replace-476","create-475","-strong-write-operations-strong--474","role-v1beta1-rbac","replace-status-473","read-status-472","patch-status-471","-strong-status-operations-strong--470","watch-list-all-namespaces-469","watch-list-468","watch-467","list-all-namespaces-466","list-465","read-464","-strong-read-operations-strong--463","delete-collection-462","delete-461","patch-460","replace-459","create-458","-strong-write-operations-strong--457","resourcequota-v1-core","replace-status-456","read-status-455","patch-status-454","-strong-status-operations-strong--453","watch-list-452","watch-451","list-450","read-449","-strong-read-operations-strong--448","delete-collection-447","delete-446","patch-445","replace-444","create-443","-strong-write-operations-strong--442","persistentvolume-v1-core","replace-proxy-path-441","replace-proxy-440","replace-connect-proxy-path-439","replace-connect-proxy-438","head-connect-proxy-path-437","head-connect-proxy-436","get-proxy-path-435","get-proxy-434","get-connect-proxy-path-433","get-connect-proxy-432","delete-proxy-path-431","delete-proxy-430","delete-connect-proxy-path-429","delete-connect-proxy-428","create-proxy-path-427","create-proxy-426","create-connect-proxy-path-425","create-connect-proxy-424","-strong-proxy-operations-strong--423","replace-status-422","read-status-421","patch-status-420","-strong-status-operations-strong--419","watch-list-418","watch-417","list-416","read-415","-strong-read-operations-strong--414","delete-collection-413","delete-412","patch-411","replace-410","create-409","-strong-write-operations-strong--408","node-v1-core","replace-status-407","read-status-406","patch-status-405","-strong-status-operations-strong--404","watch-list-403","watch-402","list-401","read-400","-strong-read-operations-strong--399","delete-collection-398","delete-397","patch-396","replace-395","create-394","-strong-write-operations-strong--393","namespace-v1-core","create-392","-strong-write-operations-strong--391","localsubjectaccessreview-v1-authorization","list-390","read-389","-strong-read-operations-strong--388","componentstatus-v1-core","watch-list-387","watch-386","list-385","read-384","-strong-read-operations-strong--383","delete-collection-382","delete-381","patch-380","replace-379","create-378","-strong-write-operations-strong--377","clusterrolebinding-v1beta1-rbac","watch-list-376","watch-375","list-374","read-373","-strong-read-operations-strong--372","delete-collection-371","delete-370","patch-369","replace-368","create-367","-strong-write-operations-strong--366","clusterrole-v1beta1-rbac","replace-status-365","-strong-status-operations-strong--364","watch-list-363","watch-362","list-361","read-360","-strong-read-operations-strong--359","delete-collection-358","delete-357","patch-356","replace-355","create-354","-strong-write-operations-strong--353","certificatesigningrequest-v1beta1-certificates","create-352","-strong-write-operations-strong--351","binding-v1-core","-strong-cluster-strong-","watch-list-350","watch-349","list-348","read-347","-strong-read-operations-strong--346","delete-collection-345","delete-344","patch-343","replace-342","create-341","-strong-write-operations-strong--340","podsecuritypolicy-v1beta1-extensions","watch-list-all-namespaces-339","watch-list-338","watch-337","list-all-namespaces-336","list-335","read-334","-strong-read-operations-strong--333","delete-collection-332","delete-331","patch-330","replace-329","create-328","-strong-write-operations-strong--327","podpreset-v1alpha1-settings","watch-list-326","watch-325","list-324","read-323","-strong-read-operations-strong--322","delete-collection-321","delete-320","patch-319","replace-318","create-317","-strong-write-operations-strong--316","thirdpartyresource-v1beta1-extensions","replace-status-315","read-status-314","patch-status-313","-strong-status-operations-strong--312","watch-list-all-namespaces-311","watch-list-310","watch-309","list-all-namespaces-308","list-307","read-306","-strong-read-operations-strong--305","delete-collection-304","delete-303","patch-302","replace-301","create-300","-strong-write-operations-strong--299","poddisruptionbudget-v1beta1-policy","watch-list-all-namespaces-298","watch-list-297","watch-296","list-all-namespaces-295","list-294","read-293","-strong-read-operations-strong--292","delete-collection-291","delete-290","patch-289","replace-288","create-287","-strong-write-operations-strong--286","podtemplate-v1-core","replace-status-285","read-status-284","patch-status-283","-strong-status-operations-strong--282","watch-list-all-namespaces-281","watch-list-280","watch-279","list-all-namespaces-278","list-277","read-276","-strong-read-operations-strong--275","delete-collection-274","delete-273","patch-272","replace-271","create-270","-strong-write-operations-strong--269","horizontalpodautoscaler-v1-autoscaling","watch-list-all-namespaces-268","watch-list-267","watch-266","list-all-namespaces-265","list-264","read-263","-strong-read-operations-strong--262","delete-collection-261","delete-260","patch-259","replace-258","create-257","-strong-write-operations-strong--256","limitrange-v1-core","watch-list-all-namespaces-255","watch-list-254","watch-253","list-all-namespaces-252","list-251","read-250","-strong-read-operations-strong--249","delete-collection-248","delete-247","patch-246","replace-245","create-244","-strong-write-operations-strong--243","event-v1-core","-strong-metadata-strong-","volume-v1-core","watch-list-242","watch-241","list-240","read-239","-strong-read-operations-strong--238","delete-collection-237","delete-236","patch-235","replace-234","create-233","-strong-write-operations-strong--232","storageclass-v1-storage","replace-status-231","read-status-230","patch-status-229","-strong-status-operations-strong--228","watch-list-all-namespaces-227","watch-list-226","watch-225","list-all-namespaces-224","list-223","read-222","-strong-read-operations-strong--221","delete-collection-220","delete-219","patch-218","replace-217","create-216","-strong-write-operations-strong--215","persistentvolumeclaim-v1-core","watch-list-all-namespaces-214","watch-list-213","watch-212","list-all-namespaces-211","list-210","read-209","-strong-read-operations-strong--208","delete-collection-207","delete-206","patch-205","replace-204","create-203","-strong-write-operations-strong--202","secret-v1-core","watch-list-all-namespaces-201","watch-list-200","watch-199","list-all-namespaces-198","list-197","read-196","-strong-read-operations-strong--195","delete-collection-194","delete-193","patch-192","replace-191","create-190","-strong-write-operations-strong--189","configmap-v1-core","-strong-config-storage-strong-","replace-proxy-path-188","replace-proxy-187","replace-connect-proxy-path-186","replace-connect-proxy-185","head-connect-proxy-path-184","head-connect-proxy-183","get-proxy-path-182","get-proxy-181","get-connect-proxy-path-180","get-connect-proxy-179","delete-proxy-path-178","delete-proxy-177","delete-connect-proxy-path-176","delete-connect-proxy-175","create-proxy-path-174","create-proxy-173","create-connect-proxy-path-172","create-connect-proxy-171","-strong-proxy-operations-strong--170","replace-status-169","read-status-168","patch-status-167","-strong-status-operations-strong--166","watch-list-all-namespaces-165","watch-list-164","watch-163","list-all-namespaces-162","list-161","read-160","-strong-read-operations-strong--159","delete-158","patch-157","replace-156","create-155","-strong-write-operations-strong--154","service-v1-core","replace-status-153","read-status-152","patch-status-151","-strong-status-operations-strong--150","watch-list-all-namespaces-149","watch-list-148","watch-147","list-all-namespaces-146","list-145","read-144","-strong-read-operations-strong--143","delete-collection-142","delete-141","patch-140","replace-139","create-138","-strong-write-operations-strong--137","ingress-v1beta1-extensions","watch-list-all-namespaces-136","watch-list-135","watch-134","list-all-namespaces-133","list-132","read-131","-strong-read-operations-strong--130","delete-collection-129","delete-128","patch-127","replace-126","create-125","-strong-write-operations-strong--124","endpoints-v1-core","-strong-discovery-load-balancing-strong-","replace-status-123","read-status-122","patch-status-121","-strong-status-operations-strong--120","watch-list-all-namespaces-119","watch-list-118","watch-117","list-all-namespaces-116","list-115","read-114","-strong-read-operations-strong--113","delete-collection-112","delete-111","patch-110","replace-109","create-108","-strong-write-operations-strong--107","statefulset-v1beta1-apps","replace-status-106","read-status-105","patch-status-104","-strong-status-operations-strong--103","watch-list-all-namespaces-102","watch-list-101","watch-100","list-all-namespaces-99","list-98","read-97","-strong-read-operations-strong--96","delete-collection-95","delete-94","patch-93","replace-92","create-91","-strong-write-operations-strong--90","replicationcontroller-v1-core","patch-scale","replace-scale","read-scale","-strong-misc-operations-strong--89","replace-status-88","read-status-87","patch-status-86","-strong-status-operations-strong--85","watch-list-all-namespaces-84","watch-list-83","watch-82","list-all-namespaces-81","list-80","read-79","-strong-read-operations-strong--78","delete-collection-77","delete-76","patch-75","replace-74","create-73","-strong-write-operations-strong--72","replicaset-v1beta1-extensions","read-log","-strong-misc-operations-strong--71","replace-proxy-path","replace-proxy","replace-connect-proxy-path","replace-connect-proxy","head-connect-proxy-path","head-connect-proxy","get-proxy-path","get-proxy","get-connect-proxy-path","get-connect-proxy","get-connect-portforward","delete-proxy-path","delete-proxy","delete-connect-proxy-path","delete-connect-proxy","create-proxy-path","create-proxy","create-connect-proxy-path","create-connect-proxy","create-connect-portforward","-strong-proxy-operations-strong-","replace-status-70","read-status-69","patch-status-68","-strong-status-operations-strong--67","watch-list-all-namespaces-66","watch-list-65","watch-64","list-all-namespaces-63","list-62","read-61","-strong-read-operations-strong--60","delete-collection-59","delete-58","patch-57","replace-56","create-55","-strong-write-operations-strong--54","pod-v1-core","replace-status-53","read-status-52","patch-status-51","-strong-status-operations-strong--50","watch-list-all-namespaces-49","watch-list-48","watch-47","list-all-namespaces-46","list-45","read-44","-strong-read-operations-strong--43","delete-collection-42","delete-41","patch-40","replace-39","create-38","-strong-write-operations-strong--37","job-v1-batch","rollback","-strong-misc-operations-strong-","replace-status-36","read-status-35","patch-status-34","-strong-status-operations-strong--33","watch-list-all-namespaces-32","watch-list-31","watch-30","list-all-namespaces-29","list-28","read-27","-strong-read-operations-strong--26","delete-collection-25","delete-24","patch-23","replace-22","create-21","-strong-write-operations-strong--20","deployment-v1beta1-apps","replace-status-19","read-status-18","patch-status-17","-strong-status-operations-strong--16","watch-list-all-namespaces-15","watch-list-14","watch-13","list-all-namespaces-12","list-11","read-10","-strong-read-operations-strong--9","delete-collection-8","delete-7","patch-6","replace-5","create-4","-strong-write-operations-strong--3","daemonset-v1beta1-extensions","replace-status","read-status","patch-status","-strong-status-operations-strong-","watch-list-all-namespaces","watch-list","watch","list-all-namespaces","list","read-2","-strong-read-operations-strong-","delete-collection","delete-1","patch","replace","create","-strong-write-operations-strong-","cronjob-v2alpha1-batch","container-v1-core","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]}})();
\ No newline at end of file
+(function(){navData = {"toc":[{"section":"userinfo-v1beta1-authentication","subsections":[]},{"section":"tokenreview-v1beta1-authentication","subsections":[{"section":"-strong-write-operations-strong--640","subsections":[{"section":"create-641"}]}]},{"section":"subjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--638","subsections":[{"section":"create-639"}]}]},{"section":"subject-v1alpha1-rbac","subsections":[]},{"section":"storageclass-v1beta1-storage","subsections":[{"section":"-strong-read-operations-strong--633","subsections":[{"section":"watch-list-637"},{"section":"watch-636"},{"section":"list-635"},{"section":"read-634"}]},{"section":"-strong-write-operations-strong--627","subsections":[{"section":"delete-collection-632"},{"section":"delete-631"},{"section":"patch-630"},{"section":"replace-629"},{"section":"create-628"}]}]},{"section":"selfsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--625","subsections":[{"section":"create-626"}]}]},{"section":"scale-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong--621","subsections":[{"section":"patch-scale-624"},{"section":"replace-scale-623"},{"section":"read-scale-622"}]}]},{"section":"scale-v1beta1-extensions","subsections":[]},{"section":"rollbackconfig-v1beta1-extensions","subsections":[]},{"section":"roleref-v1alpha1-rbac","subsections":[]},{"section":"rolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--614","subsections":[{"section":"watch-list-all-namespaces-620"},{"section":"watch-list-619"},{"section":"watch-618"},{"section":"list-all-namespaces-617"},{"section":"list-616"},{"section":"read-615"}]},{"section":"-strong-write-operations-strong--608","subsections":[{"section":"delete-collection-613"},{"section":"delete-612"},{"section":"patch-611"},{"section":"replace-610"},{"section":"create-609"}]}]},{"section":"role-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--601","subsections":[{"section":"watch-list-all-namespaces-607"},{"section":"watch-list-606"},{"section":"watch-605"},{"section":"list-all-namespaces-604"},{"section":"list-603"},{"section":"read-602"}]},{"section":"-strong-write-operations-strong--595","subsections":[{"section":"delete-collection-600"},{"section":"delete-599"},{"section":"patch-598"},{"section":"replace-597"},{"section":"create-596"}]}]},{"section":"resourceattributes-v1beta1-authorization","subsections":[]},{"section":"policyrule-v1alpha1-rbac","subsections":[]},{"section":"nonresourceattributes-v1beta1-authorization","subsections":[]},{"section":"localsubjectaccessreview-v1beta1-authorization","subsections":[{"section":"-strong-write-operations-strong--593","subsections":[{"section":"create-594"}]}]},{"section":"horizontalpodautoscaler-v2alpha1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--589","subsections":[{"section":"replace-status-592"},{"section":"read-status-591"},{"section":"patch-status-590"}]},{"section":"-strong-read-operations-strong--582","subsections":[{"section":"watch-list-all-namespaces-588"},{"section":"watch-list-587"},{"section":"watch-586"},{"section":"list-all-namespaces-585"},{"section":"list-584"},{"section":"read-583"}]},{"section":"-strong-write-operations-strong--576","subsections":[{"section":"delete-collection-581"},{"section":"delete-580"},{"section":"patch-579"},{"section":"replace-578"},{"section":"create-577"}]}]},{"section":"deploymentcondition-v1beta1-extensions","subsections":[]},{"section":"deployment-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--571","subsections":[{"section":"rollback-575"},{"section":"patch-scale-574"},{"section":"replace-scale-573"},{"section":"read-scale-572"}]},{"section":"-strong-status-operations-strong--567","subsections":[{"section":"replace-status-570"},{"section":"read-status-569"},{"section":"patch-status-568"}]},{"section":"-strong-read-operations-strong--560","subsections":[{"section":"watch-list-all-namespaces-566"},{"section":"watch-list-565"},{"section":"watch-564"},{"section":"list-all-namespaces-563"},{"section":"list-562"},{"section":"read-561"}]},{"section":"-strong-write-operations-strong--554","subsections":[{"section":"delete-collection-559"},{"section":"delete-558"},{"section":"patch-557"},{"section":"replace-556"},{"section":"create-555"}]}]},{"section":"crossversionobjectreference-v2alpha1-autoscaling","subsections":[]},{"section":"clusterrolebinding-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--549","subsections":[{"section":"watch-list-553"},{"section":"watch-552"},{"section":"list-551"},{"section":"read-550"}]},{"section":"-strong-write-operations-strong--543","subsections":[{"section":"delete-collection-548"},{"section":"delete-547"},{"section":"patch-546"},{"section":"replace-545"},{"section":"create-544"}]}]},{"section":"clusterrole-v1alpha1-rbac","subsections":[{"section":"-strong-read-operations-strong--538","subsections":[{"section":"watch-list-542"},{"section":"watch-541"},{"section":"list-540"},{"section":"read-539"}]},{"section":"-strong-write-operations-strong--532","subsections":[{"section":"delete-collection-537"},{"section":"delete-536"},{"section":"patch-535"},{"section":"replace-534"},{"section":"create-533"}]}]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"weightedpodaffinityterm-v1-core"},{"section":"watchevent-v1-meta"},{"section":"vspherevirtualdiskvolumesource-v1-core"},{"section":"volumeprojection-v1-core"},{"section":"volumemount-v1-core"},{"section":"userinfo-v1-authentication"},{"section":"toleration-v1-core"},{"section":"time-v1-meta"},{"section":"taint-v1-core"},{"section":"tcpsocketaction-v1-core"},{"section":"supplementalgroupsstrategyoptions-v1beta1-extensions"},{"section":"subject-v1beta1-rbac"},{"section":"statusdetails-v1-meta"},{"section":"statuscause-v1-meta"},{"section":"status-v1-meta"},{"section":"serviceport-v1-core"},{"section":"serveraddressbyclientcidr-v1-meta"},{"section":"securitycontext-v1-core"},{"section":"secretvolumesource-v1-core"},{"section":"secretprojection-v1-core"},{"section":"secretkeyselector-v1-core"},{"section":"secretenvsource-v1-core"},{"section":"scaleiovolumesource-v1-core"},{"section":"scale-v1-autoscaling"},{"section":"selinuxstrategyoptions-v1beta1-extensions"},{"section":"selinuxoptions-v1-core"},{"section":"runasuserstrategyoptions-v1beta1-extensions"},{"section":"rollbackconfig-v1beta1-apps"},{"section":"roleref-v1beta1-rbac"},{"section":"resourcerequirements-v1-core"},{"section":"resourcemetricstatus-v2alpha1-autoscaling"},{"section":"resourcemetricsource-v2alpha1-autoscaling"},{"section":"resourcefieldselector-v1-core"},{"section":"resourceattributes-v1-authorization"},{"section":"replicationcontrollercondition-v1-core"},{"section":"replicasetcondition-v1beta1-extensions"},{"section":"rbdvolumesource-v1-core"},{"section":"quobytevolumesource-v1-core"},{"section":"quantity-resource-core"},{"section":"projectedvolumesource-v1-core"},{"section":"probe-v1-core"},{"section":"preferredschedulingterm-v1-core"},{"section":"preconditions-v1-meta"},{"section":"portworxvolumesource-v1-core"},{"section":"policyrule-v1beta1-rbac"},{"section":"podsmetricstatus-v2alpha1-autoscaling"},{"section":"podsmetricsource-v2alpha1-autoscaling"},{"section":"podsecuritycontext-v1-core"},{"section":"podcondition-v1-core"},{"section":"podantiaffinity-v1-core"},{"section":"podaffinityterm-v1-core"},{"section":"podaffinity-v1-core"},{"section":"photonpersistentdiskvolumesource-v1-core"},{"section":"persistentvolumeclaimvolumesource-v1-core"},{"section":"patch-v1-meta"},{"section":"ownerreference-v1-meta"},{"section":"objectreference-v1-core"},{"section":"objectmetricstatus-v2alpha1-autoscaling"},{"section":"objectmetricsource-v2alpha1-autoscaling"},{"section":"objectmeta-v1-meta"},{"section":"objectfieldselector-v1-core"},{"section":"nonresourceattributes-v1-authorization"},{"section":"nodesysteminfo-v1-core"},{"section":"nodeselectorterm-v1-core"},{"section":"nodeselectorrequirement-v1-core"},{"section":"nodeselector-v1-core"},{"section":"nodedaemonendpoints-v1-core"},{"section":"nodecondition-v1-core"},{"section":"nodeaffinity-v1-core"},{"section":"nodeaddress-v1-core"},{"section":"networkpolicyport-v1beta1-extensions"},{"section":"networkpolicypeer-v1beta1-extensions"},{"section":"networkpolicyingressrule-v1beta1-extensions"},{"section":"nfsvolumesource-v1-core"},{"section":"metricstatus-v2alpha1-autoscaling"},{"section":"metricspec-v2alpha1-autoscaling"},{"section":"localobjectreference-v1-core"},{"section":"loadbalancerstatus-v1-core"},{"section":"loadbalanceringress-v1-core"},{"section":"listmeta-v1-meta"},{"section":"limitrangeitem-v1-core"},{"section":"lifecycle-v1-core"},{"section":"labelselectorrequirement-v1-meta"},{"section":"labelselector-v1-meta"},{"section":"keytopath-v1-core"},{"section":"jobtemplatespec-v2alpha1-batch"},{"section":"jobcondition-v1-batch"},{"section":"ingresstls-v1beta1-extensions"},{"section":"ingressrule-v1beta1-extensions"},{"section":"ingressbackend-v1beta1-extensions"},{"section":"iscsivolumesource-v1-core"},{"section":"idrange-v1beta1-extensions"},{"section":"hostportrange-v1beta1-extensions"},{"section":"hostpathvolumesource-v1-core"},{"section":"handler-v1-core"},{"section":"httpingressrulevalue-v1beta1-extensions"},{"section":"httpingresspath-v1beta1-extensions"},{"section":"httpheader-v1-core"},{"section":"httpgetaction-v1-core"},{"section":"groupversionfordiscovery-v1-meta"},{"section":"glusterfsvolumesource-v1-core"},{"section":"gitrepovolumesource-v1-core"},{"section":"gcepersistentdiskvolumesource-v1-core"},{"section":"flockervolumesource-v1-core"},{"section":"flexvolumesource-v1-core"},{"section":"fsgroupstrategyoptions-v1beta1-extensions"},{"section":"fcvolumesource-v1-core"},{"section":"execaction-v1-core"},{"section":"eviction-v1beta1-policy"},{"section":"eventsource-v1-core"},{"section":"envvarsource-v1-core"},{"section":"envvar-v1-core"},{"section":"envfromsource-v1-core"},{"section":"endpointsubset-v1-core"},{"section":"endpointport-v1-core"},{"section":"endpointaddress-v1-core"},{"section":"emptydirvolumesource-v1-core"},{"section":"downwardapivolumesource-v1-core"},{"section":"downwardapivolumefile-v1-core"},{"section":"downwardapiprojection-v1-core"},{"section":"deploymentcondition-v1beta1-apps"},{"section":"deleteoptions-v1-meta"},{"section":"daemonsetupdatestrategy-v1beta1-extensions"},{"section":"daemonendpoint-v1-core"},{"section":"crossversionobjectreference-v1-autoscaling"},{"section":"containerstatewaiting-v1-core"},{"section":"containerstateterminated-v1-core"},{"section":"containerstaterunning-v1-core"},{"section":"containerstate-v1-core"},{"section":"containerport-v1-core"},{"section":"containerimage-v1-core"},{"section":"configmapvolumesource-v1-core"},{"section":"configmapprojection-v1-core"},{"section":"configmapkeyselector-v1-core"},{"section":"configmapenvsource-v1-core"},{"section":"componentcondition-v1-core"},{"section":"cindervolumesource-v1-core"},{"section":"certificatesigningrequestcondition-v1beta1-certificates"},{"section":"cephfsvolumesource-v1-core"},{"section":"capabilities-v1-core"},{"section":"azurefilevolumesource-v1-core"},{"section":"azurediskvolumesource-v1-core"},{"section":"attachedvolume-v1-core"},{"section":"affinity-v1-core"},{"section":"awselasticblockstorevolumesource-v1-core"},{"section":"apiversions-v1-meta"},{"section":"apiversion-v1beta1-extensions"},{"section":"apiresource-v1-meta"},{"section":"apigroup-v1-meta"}]},{"section":"networkpolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--525","subsections":[{"section":"watch-list-all-namespaces-531"},{"section":"watch-list-530"},{"section":"watch-529"},{"section":"list-all-namespaces-528"},{"section":"list-527"},{"section":"read-526"}]},{"section":"-strong-write-operations-strong--519","subsections":[{"section":"delete-collection-524"},{"section":"delete-523"},{"section":"patch-522"},{"section":"replace-521"},{"section":"create-520"}]}]},{"section":"tokenreview-v1-authentication","subsections":[{"section":"-strong-write-operations-strong--517","subsections":[{"section":"create-518"}]}]},{"section":"subjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--515","subsections":[{"section":"create-516"}]}]},{"section":"serviceaccount-v1-core","subsections":[{"section":"-strong-read-operations-strong--508","subsections":[{"section":"watch-list-all-namespaces-514"},{"section":"watch-list-513"},{"section":"watch-512"},{"section":"list-all-namespaces-511"},{"section":"list-510"},{"section":"read-509"}]},{"section":"-strong-write-operations-strong--502","subsections":[{"section":"delete-collection-507"},{"section":"delete-506"},{"section":"patch-505"},{"section":"replace-504"},{"section":"create-503"}]}]},{"section":"selfsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--500","subsections":[{"section":"create-501"}]}]},{"section":"rolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--493","subsections":[{"section":"watch-list-all-namespaces-499"},{"section":"watch-list-498"},{"section":"watch-497"},{"section":"list-all-namespaces-496"},{"section":"list-495"},{"section":"read-494"}]},{"section":"-strong-write-operations-strong--487","subsections":[{"section":"delete-collection-492"},{"section":"delete-491"},{"section":"patch-490"},{"section":"replace-489"},{"section":"create-488"}]}]},{"section":"role-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--480","subsections":[{"section":"watch-list-all-namespaces-486"},{"section":"watch-list-485"},{"section":"watch-484"},{"section":"list-all-namespaces-483"},{"section":"list-482"},{"section":"read-481"}]},{"section":"-strong-write-operations-strong--474","subsections":[{"section":"delete-collection-479"},{"section":"delete-478"},{"section":"patch-477"},{"section":"replace-476"},{"section":"create-475"}]}]},{"section":"resourcequota-v1-core","subsections":[{"section":"-strong-status-operations-strong--470","subsections":[{"section":"replace-status-473"},{"section":"read-status-472"},{"section":"patch-status-471"}]},{"section":"-strong-read-operations-strong--463","subsections":[{"section":"watch-list-all-namespaces-469"},{"section":"watch-list-468"},{"section":"watch-467"},{"section":"list-all-namespaces-466"},{"section":"list-465"},{"section":"read-464"}]},{"section":"-strong-write-operations-strong--457","subsections":[{"section":"delete-collection-462"},{"section":"delete-461"},{"section":"patch-460"},{"section":"replace-459"},{"section":"create-458"}]}]},{"section":"persistentvolume-v1-core","subsections":[{"section":"-strong-status-operations-strong--453","subsections":[{"section":"replace-status-456"},{"section":"read-status-455"},{"section":"patch-status-454"}]},{"section":"-strong-read-operations-strong--448","subsections":[{"section":"watch-list-452"},{"section":"watch-451"},{"section":"list-450"},{"section":"read-449"}]},{"section":"-strong-write-operations-strong--442","subsections":[{"section":"delete-collection-447"},{"section":"delete-446"},{"section":"patch-445"},{"section":"replace-444"},{"section":"create-443"}]}]},{"section":"node-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--423","subsections":[{"section":"replace-proxy-path-441"},{"section":"replace-proxy-440"},{"section":"replace-connect-proxy-path-439"},{"section":"replace-connect-proxy-438"},{"section":"head-connect-proxy-path-437"},{"section":"head-connect-proxy-436"},{"section":"get-proxy-path-435"},{"section":"get-proxy-434"},{"section":"get-connect-proxy-path-433"},{"section":"get-connect-proxy-432"},{"section":"delete-proxy-path-431"},{"section":"delete-proxy-430"},{"section":"delete-connect-proxy-path-429"},{"section":"delete-connect-proxy-428"},{"section":"create-proxy-path-427"},{"section":"create-proxy-426"},{"section":"create-connect-proxy-path-425"},{"section":"create-connect-proxy-424"}]},{"section":"-strong-status-operations-strong--419","subsections":[{"section":"replace-status-422"},{"section":"read-status-421"},{"section":"patch-status-420"}]},{"section":"-strong-read-operations-strong--414","subsections":[{"section":"watch-list-418"},{"section":"watch-417"},{"section":"list-416"},{"section":"read-415"}]},{"section":"-strong-write-operations-strong--408","subsections":[{"section":"delete-collection-413"},{"section":"delete-412"},{"section":"patch-411"},{"section":"replace-410"},{"section":"create-409"}]}]},{"section":"namespace-v1-core","subsections":[{"section":"-strong-status-operations-strong--404","subsections":[{"section":"replace-status-407"},{"section":"read-status-406"},{"section":"patch-status-405"}]},{"section":"-strong-read-operations-strong--399","subsections":[{"section":"watch-list-403"},{"section":"watch-402"},{"section":"list-401"},{"section":"read-400"}]},{"section":"-strong-write-operations-strong--393","subsections":[{"section":"delete-collection-398"},{"section":"delete-397"},{"section":"patch-396"},{"section":"replace-395"},{"section":"create-394"}]}]},{"section":"localsubjectaccessreview-v1-authorization","subsections":[{"section":"-strong-write-operations-strong--391","subsections":[{"section":"create-392"}]}]},{"section":"componentstatus-v1-core","subsections":[{"section":"-strong-read-operations-strong--388","subsections":[{"section":"list-390"},{"section":"read-389"}]}]},{"section":"clusterrolebinding-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--383","subsections":[{"section":"watch-list-387"},{"section":"watch-386"},{"section":"list-385"},{"section":"read-384"}]},{"section":"-strong-write-operations-strong--377","subsections":[{"section":"delete-collection-382"},{"section":"delete-381"},{"section":"patch-380"},{"section":"replace-379"},{"section":"create-378"}]}]},{"section":"clusterrole-v1beta1-rbac","subsections":[{"section":"-strong-read-operations-strong--372","subsections":[{"section":"watch-list-376"},{"section":"watch-375"},{"section":"list-374"},{"section":"read-373"}]},{"section":"-strong-write-operations-strong--366","subsections":[{"section":"delete-collection-371"},{"section":"delete-370"},{"section":"patch-369"},{"section":"replace-368"},{"section":"create-367"}]}]},{"section":"certificatesigningrequest-v1beta1-certificates","subsections":[{"section":"-strong-status-operations-strong--364","subsections":[{"section":"replace-status-365"}]},{"section":"-strong-read-operations-strong--359","subsections":[{"section":"watch-list-363"},{"section":"watch-362"},{"section":"list-361"},{"section":"read-360"}]},{"section":"-strong-write-operations-strong--353","subsections":[{"section":"delete-collection-358"},{"section":"delete-357"},{"section":"patch-356"},{"section":"replace-355"},{"section":"create-354"}]}]},{"section":"binding-v1-core","subsections":[{"section":"-strong-write-operations-strong--351","subsections":[{"section":"create-352"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"podsecuritypolicy-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--346","subsections":[{"section":"watch-list-350"},{"section":"watch-349"},{"section":"list-348"},{"section":"read-347"}]},{"section":"-strong-write-operations-strong--340","subsections":[{"section":"delete-collection-345"},{"section":"delete-344"},{"section":"patch-343"},{"section":"replace-342"},{"section":"create-341"}]}]},{"section":"podpreset-v1alpha1-settings","subsections":[{"section":"-strong-read-operations-strong--333","subsections":[{"section":"watch-list-all-namespaces-339"},{"section":"watch-list-338"},{"section":"watch-337"},{"section":"list-all-namespaces-336"},{"section":"list-335"},{"section":"read-334"}]},{"section":"-strong-write-operations-strong--327","subsections":[{"section":"delete-collection-332"},{"section":"delete-331"},{"section":"patch-330"},{"section":"replace-329"},{"section":"create-328"}]}]},{"section":"thirdpartyresource-v1beta1-extensions","subsections":[{"section":"-strong-read-operations-strong--322","subsections":[{"section":"watch-list-326"},{"section":"watch-325"},{"section":"list-324"},{"section":"read-323"}]},{"section":"-strong-write-operations-strong--316","subsections":[{"section":"delete-collection-321"},{"section":"delete-320"},{"section":"patch-319"},{"section":"replace-318"},{"section":"create-317"}]}]},{"section":"poddisruptionbudget-v1beta1-policy","subsections":[{"section":"-strong-status-operations-strong--312","subsections":[{"section":"replace-status-315"},{"section":"read-status-314"},{"section":"patch-status-313"}]},{"section":"-strong-read-operations-strong--305","subsections":[{"section":"watch-list-all-namespaces-311"},{"section":"watch-list-310"},{"section":"watch-309"},{"section":"list-all-namespaces-308"},{"section":"list-307"},{"section":"read-306"}]},{"section":"-strong-write-operations-strong--299","subsections":[{"section":"delete-collection-304"},{"section":"delete-303"},{"section":"patch-302"},{"section":"replace-301"},{"section":"create-300"}]}]},{"section":"podtemplate-v1-core","subsections":[{"section":"-strong-read-operations-strong--292","subsections":[{"section":"watch-list-all-namespaces-298"},{"section":"watch-list-297"},{"section":"watch-296"},{"section":"list-all-namespaces-295"},{"section":"list-294"},{"section":"read-293"}]},{"section":"-strong-write-operations-strong--286","subsections":[{"section":"delete-collection-291"},{"section":"delete-290"},{"section":"patch-289"},{"section":"replace-288"},{"section":"create-287"}]}]},{"section":"horizontalpodautoscaler-v1-autoscaling","subsections":[{"section":"-strong-status-operations-strong--282","subsections":[{"section":"replace-status-285"},{"section":"read-status-284"},{"section":"patch-status-283"}]},{"section":"-strong-read-operations-strong--275","subsections":[{"section":"watch-list-all-namespaces-281"},{"section":"watch-list-280"},{"section":"watch-279"},{"section":"list-all-namespaces-278"},{"section":"list-277"},{"section":"read-276"}]},{"section":"-strong-write-operations-strong--269","subsections":[{"section":"delete-collection-274"},{"section":"delete-273"},{"section":"patch-272"},{"section":"replace-271"},{"section":"create-270"}]}]},{"section":"limitrange-v1-core","subsections":[{"section":"-strong-read-operations-strong--262","subsections":[{"section":"watch-list-all-namespaces-268"},{"section":"watch-list-267"},{"section":"watch-266"},{"section":"list-all-namespaces-265"},{"section":"list-264"},{"section":"read-263"}]},{"section":"-strong-write-operations-strong--256","subsections":[{"section":"delete-collection-261"},{"section":"delete-260"},{"section":"patch-259"},{"section":"replace-258"},{"section":"create-257"}]}]},{"section":"event-v1-core","subsections":[{"section":"-strong-read-operations-strong--249","subsections":[{"section":"watch-list-all-namespaces-255"},{"section":"watch-list-254"},{"section":"watch-253"},{"section":"list-all-namespaces-252"},{"section":"list-251"},{"section":"read-250"}]},{"section":"-strong-write-operations-strong--243","subsections":[{"section":"delete-collection-248"},{"section":"delete-247"},{"section":"patch-246"},{"section":"replace-245"},{"section":"create-244"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1-core","subsections":[]},{"section":"storageclass-v1-storage","subsections":[{"section":"-strong-read-operations-strong--238","subsections":[{"section":"watch-list-242"},{"section":"watch-241"},{"section":"list-240"},{"section":"read-239"}]},{"section":"-strong-write-operations-strong--232","subsections":[{"section":"delete-collection-237"},{"section":"delete-236"},{"section":"patch-235"},{"section":"replace-234"},{"section":"create-233"}]}]},{"section":"persistentvolumeclaim-v1-core","subsections":[{"section":"-strong-status-operations-strong--228","subsections":[{"section":"replace-status-231"},{"section":"read-status-230"},{"section":"patch-status-229"}]},{"section":"-strong-read-operations-strong--221","subsections":[{"section":"watch-list-all-namespaces-227"},{"section":"watch-list-226"},{"section":"watch-225"},{"section":"list-all-namespaces-224"},{"section":"list-223"},{"section":"read-222"}]},{"section":"-strong-write-operations-strong--215","subsections":[{"section":"delete-collection-220"},{"section":"delete-219"},{"section":"patch-218"},{"section":"replace-217"},{"section":"create-216"}]}]},{"section":"secret-v1-core","subsections":[{"section":"-strong-read-operations-strong--208","subsections":[{"section":"watch-list-all-namespaces-214"},{"section":"watch-list-213"},{"section":"watch-212"},{"section":"list-all-namespaces-211"},{"section":"list-210"},{"section":"read-209"}]},{"section":"-strong-write-operations-strong--202","subsections":[{"section":"delete-collection-207"},{"section":"delete-206"},{"section":"patch-205"},{"section":"replace-204"},{"section":"create-203"}]}]},{"section":"configmap-v1-core","subsections":[{"section":"-strong-read-operations-strong--195","subsections":[{"section":"watch-list-all-namespaces-201"},{"section":"watch-list-200"},{"section":"watch-199"},{"section":"list-all-namespaces-198"},{"section":"list-197"},{"section":"read-196"}]},{"section":"-strong-write-operations-strong--189","subsections":[{"section":"delete-collection-194"},{"section":"delete-193"},{"section":"patch-192"},{"section":"replace-191"},{"section":"create-190"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1-core","subsections":[{"section":"-strong-proxy-operations-strong--170","subsections":[{"section":"replace-proxy-path-188"},{"section":"replace-proxy-187"},{"section":"replace-connect-proxy-path-186"},{"section":"replace-connect-proxy-185"},{"section":"head-connect-proxy-path-184"},{"section":"head-connect-proxy-183"},{"section":"get-proxy-path-182"},{"section":"get-proxy-181"},{"section":"get-connect-proxy-path-180"},{"section":"get-connect-proxy-179"},{"section":"delete-proxy-path-178"},{"section":"delete-proxy-177"},{"section":"delete-connect-proxy-path-176"},{"section":"delete-connect-proxy-175"},{"section":"create-proxy-path-174"},{"section":"create-proxy-173"},{"section":"create-connect-proxy-path-172"},{"section":"create-connect-proxy-171"}]},{"section":"-strong-status-operations-strong--166","subsections":[{"section":"replace-status-169"},{"section":"read-status-168"},{"section":"patch-status-167"}]},{"section":"-strong-read-operations-strong--159","subsections":[{"section":"watch-list-all-namespaces-165"},{"section":"watch-list-164"},{"section":"watch-163"},{"section":"list-all-namespaces-162"},{"section":"list-161"},{"section":"read-160"}]},{"section":"-strong-write-operations-strong--154","subsections":[{"section":"delete-158"},{"section":"patch-157"},{"section":"replace-156"},{"section":"create-155"}]}]},{"section":"ingress-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--150","subsections":[{"section":"replace-status-153"},{"section":"read-status-152"},{"section":"patch-status-151"}]},{"section":"-strong-read-operations-strong--143","subsections":[{"section":"watch-list-all-namespaces-149"},{"section":"watch-list-148"},{"section":"watch-147"},{"section":"list-all-namespaces-146"},{"section":"list-145"},{"section":"read-144"}]},{"section":"-strong-write-operations-strong--137","subsections":[{"section":"delete-collection-142"},{"section":"delete-141"},{"section":"patch-140"},{"section":"replace-139"},{"section":"create-138"}]}]},{"section":"endpoints-v1-core","subsections":[{"section":"-strong-read-operations-strong--130","subsections":[{"section":"watch-list-all-namespaces-136"},{"section":"watch-list-135"},{"section":"watch-134"},{"section":"list-all-namespaces-133"},{"section":"list-132"},{"section":"read-131"}]},{"section":"-strong-write-operations-strong--124","subsections":[{"section":"delete-collection-129"},{"section":"delete-128"},{"section":"patch-127"},{"section":"replace-126"},{"section":"create-125"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1-apps","subsections":[{"section":"-strong-status-operations-strong--120","subsections":[{"section":"replace-status-123"},{"section":"read-status-122"},{"section":"patch-status-121"}]},{"section":"-strong-read-operations-strong--113","subsections":[{"section":"watch-list-all-namespaces-119"},{"section":"watch-list-118"},{"section":"watch-117"},{"section":"list-all-namespaces-116"},{"section":"list-115"},{"section":"read-114"}]},{"section":"-strong-write-operations-strong--107","subsections":[{"section":"delete-collection-112"},{"section":"delete-111"},{"section":"patch-110"},{"section":"replace-109"},{"section":"create-108"}]}]},{"section":"replicationcontroller-v1-core","subsections":[{"section":"-strong-status-operations-strong--103","subsections":[{"section":"replace-status-106"},{"section":"read-status-105"},{"section":"patch-status-104"}]},{"section":"-strong-read-operations-strong--96","subsections":[{"section":"watch-list-all-namespaces-102"},{"section":"watch-list-101"},{"section":"watch-100"},{"section":"list-all-namespaces-99"},{"section":"list-98"},{"section":"read-97"}]},{"section":"-strong-write-operations-strong--90","subsections":[{"section":"delete-collection-95"},{"section":"delete-94"},{"section":"patch-93"},{"section":"replace-92"},{"section":"create-91"}]}]},{"section":"replicaset-v1beta1-extensions","subsections":[{"section":"-strong-misc-operations-strong--89","subsections":[{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"section":"-strong-status-operations-strong--85","subsections":[{"section":"replace-status-88"},{"section":"read-status-87"},{"section":"patch-status-86"}]},{"section":"-strong-read-operations-strong--78","subsections":[{"section":"watch-list-all-namespaces-84"},{"section":"watch-list-83"},{"section":"watch-82"},{"section":"list-all-namespaces-81"},{"section":"list-80"},{"section":"read-79"}]},{"section":"-strong-write-operations-strong--72","subsections":[{"section":"delete-collection-77"},{"section":"delete-76"},{"section":"patch-75"},{"section":"replace-74"},{"section":"create-73"}]}]},{"section":"pod-v1-core","subsections":[{"section":"-strong-misc-operations-strong--71","subsections":[{"section":"read-log"}]},{"section":"-strong-proxy-operations-strong-","subsections":[{"section":"replace-proxy-path"},{"section":"replace-proxy"},{"section":"replace-connect-proxy-path"},{"section":"replace-connect-proxy"},{"section":"head-connect-proxy-path"},{"section":"head-connect-proxy"},{"section":"get-proxy-path"},{"section":"get-proxy"},{"section":"get-connect-proxy-path"},{"section":"get-connect-proxy"},{"section":"get-connect-portforward"},{"section":"delete-proxy-path"},{"section":"delete-proxy"},{"section":"delete-connect-proxy-path"},{"section":"delete-connect-proxy"},{"section":"create-proxy-path"},{"section":"create-proxy"},{"section":"create-connect-proxy-path"},{"section":"create-connect-proxy"},{"section":"create-connect-portforward"}]},{"section":"-strong-status-operations-strong--67","subsections":[{"section":"replace-status-70"},{"section":"read-status-69"},{"section":"patch-status-68"}]},{"section":"-strong-read-operations-strong--60","subsections":[{"section":"watch-list-all-namespaces-66"},{"section":"watch-list-65"},{"section":"watch-64"},{"section":"list-all-namespaces-63"},{"section":"list-62"},{"section":"read-61"}]},{"section":"-strong-write-operations-strong--54","subsections":[{"section":"delete-collection-59"},{"section":"delete-58"},{"section":"patch-57"},{"section":"replace-56"},{"section":"create-55"}]}]},{"section":"job-v1-batch","subsections":[{"section":"-strong-status-operations-strong--50","subsections":[{"section":"replace-status-53"},{"section":"read-status-52"},{"section":"patch-status-51"}]},{"section":"-strong-read-operations-strong--43","subsections":[{"section":"watch-list-all-namespaces-49"},{"section":"watch-list-48"},{"section":"watch-47"},{"section":"list-all-namespaces-46"},{"section":"list-45"},{"section":"read-44"}]},{"section":"-strong-write-operations-strong--37","subsections":[{"section":"delete-collection-42"},{"section":"delete-41"},{"section":"patch-40"},{"section":"replace-39"},{"section":"create-38"}]}]},{"section":"deployment-v1beta1-apps","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"}]},{"section":"-strong-status-operations-strong--33","subsections":[{"section":"replace-status-36"},{"section":"read-status-35"},{"section":"patch-status-34"}]},{"section":"-strong-read-operations-strong--26","subsections":[{"section":"watch-list-all-namespaces-32"},{"section":"watch-list-31"},{"section":"watch-30"},{"section":"list-all-namespaces-29"},{"section":"list-28"},{"section":"read-27"}]},{"section":"-strong-write-operations-strong--20","subsections":[{"section":"delete-collection-25"},{"section":"delete-24"},{"section":"patch-23"},{"section":"replace-22"},{"section":"create-21"}]}]},{"section":"daemonset-v1beta1-extensions","subsections":[{"section":"-strong-status-operations-strong--16","subsections":[{"section":"replace-status-19"},{"section":"read-status-18"},{"section":"patch-status-17"}]},{"section":"-strong-read-operations-strong--9","subsections":[{"section":"watch-list-all-namespaces-15"},{"section":"watch-list-14"},{"section":"watch-13"},{"section":"list-all-namespaces-12"},{"section":"list-11"},{"section":"read-10"}]},{"section":"-strong-write-operations-strong--3","subsections":[{"section":"delete-collection-8"},{"section":"delete-7"},{"section":"patch-6"},{"section":"replace-5"},{"section":"create-4"}]}]},{"section":"cronjob-v2alpha1-batch","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"section":"watch-list"},{"section":"watch"},{"section":"list-all-namespaces"},{"section":"list"},{"section":"read-2"}]},{"section":"-strong-write-operations-strong-","subsections":[{"section":"delete-collection"},{"section":"delete-1"},{"section":"patch"},{"section":"replace"},{"section":"create"}]}]},{"section":"container-v1-core","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["userinfo-v1beta1-authentication","create-641","-strong-write-operations-strong--640","tokenreview-v1beta1-authentication","create-639","-strong-write-operations-strong--638","subjectaccessreview-v1beta1-authorization","subject-v1alpha1-rbac","watch-list-637","watch-636","list-635","read-634","-strong-read-operations-strong--633","delete-collection-632","delete-631","patch-630","replace-629","create-628","-strong-write-operations-strong--627","storageclass-v1beta1-storage","create-626","-strong-write-operations-strong--625","selfsubjectaccessreview-v1beta1-authorization","patch-scale-624","replace-scale-623","read-scale-622","-strong-misc-operations-strong--621","scale-v1beta1-apps","scale-v1beta1-extensions","rollbackconfig-v1beta1-extensions","roleref-v1alpha1-rbac","watch-list-all-namespaces-620","watch-list-619","watch-618","list-all-namespaces-617","list-616","read-615","-strong-read-operations-strong--614","delete-collection-613","delete-612","patch-611","replace-610","create-609","-strong-write-operations-strong--608","rolebinding-v1alpha1-rbac","watch-list-all-namespaces-607","watch-list-606","watch-605","list-all-namespaces-604","list-603","read-602","-strong-read-operations-strong--601","delete-collection-600","delete-599","patch-598","replace-597","create-596","-strong-write-operations-strong--595","role-v1alpha1-rbac","resourceattributes-v1beta1-authorization","policyrule-v1alpha1-rbac","nonresourceattributes-v1beta1-authorization","create-594","-strong-write-operations-strong--593","localsubjectaccessreview-v1beta1-authorization","replace-status-592","read-status-591","patch-status-590","-strong-status-operations-strong--589","watch-list-all-namespaces-588","watch-list-587","watch-586","list-all-namespaces-585","list-584","read-583","-strong-read-operations-strong--582","delete-collection-581","delete-580","patch-579","replace-578","create-577","-strong-write-operations-strong--576","horizontalpodautoscaler-v2alpha1-autoscaling","deploymentcondition-v1beta1-extensions","rollback-575","patch-scale-574","replace-scale-573","read-scale-572","-strong-misc-operations-strong--571","replace-status-570","read-status-569","patch-status-568","-strong-status-operations-strong--567","watch-list-all-namespaces-566","watch-list-565","watch-564","list-all-namespaces-563","list-562","read-561","-strong-read-operations-strong--560","delete-collection-559","delete-558","patch-557","replace-556","create-555","-strong-write-operations-strong--554","deployment-v1beta1-extensions","crossversionobjectreference-v2alpha1-autoscaling","watch-list-553","watch-552","list-551","read-550","-strong-read-operations-strong--549","delete-collection-548","delete-547","patch-546","replace-545","create-544","-strong-write-operations-strong--543","clusterrolebinding-v1alpha1-rbac","watch-list-542","watch-541","list-540","read-539","-strong-read-operations-strong--538","delete-collection-537","delete-536","patch-535","replace-534","create-533","-strong-write-operations-strong--532","clusterrole-v1alpha1-rbac","-strong-old-api-versions-strong-","weightedpodaffinityterm-v1-core","watchevent-v1-meta","vspherevirtualdiskvolumesource-v1-core","volumeprojection-v1-core","volumemount-v1-core","userinfo-v1-authentication","toleration-v1-core","time-v1-meta","taint-v1-core","tcpsocketaction-v1-core","supplementalgroupsstrategyoptions-v1beta1-extensions","subject-v1beta1-rbac","statusdetails-v1-meta","statuscause-v1-meta","status-v1-meta","serviceport-v1-core","serveraddressbyclientcidr-v1-meta","securitycontext-v1-core","secretvolumesource-v1-core","secretprojection-v1-core","secretkeyselector-v1-core","secretenvsource-v1-core","scaleiovolumesource-v1-core","scale-v1-autoscaling","selinuxstrategyoptions-v1beta1-extensions","selinuxoptions-v1-core","runasuserstrategyoptions-v1beta1-extensions","rollbackconfig-v1beta1-apps","roleref-v1beta1-rbac","resourcerequirements-v1-core","resourcemetricstatus-v2alpha1-autoscaling","resourcemetricsource-v2alpha1-autoscaling","resourcefieldselector-v1-core","resourceattributes-v1-authorization","replicationcontrollercondition-v1-core","replicasetcondition-v1beta1-extensions","rbdvolumesource-v1-core","quobytevolumesource-v1-core","quantity-resource-core","projectedvolumesource-v1-core","probe-v1-core","preferredschedulingterm-v1-core","preconditions-v1-meta","portworxvolumesource-v1-core","policyrule-v1beta1-rbac","podsmetricstatus-v2alpha1-autoscaling","podsmetricsource-v2alpha1-autoscaling","podsecuritycontext-v1-core","podcondition-v1-core","podantiaffinity-v1-core","podaffinityterm-v1-core","podaffinity-v1-core","photonpersistentdiskvolumesource-v1-core","persistentvolumeclaimvolumesource-v1-core","patch-v1-meta","ownerreference-v1-meta","objectreference-v1-core","objectmetricstatus-v2alpha1-autoscaling","objectmetricsource-v2alpha1-autoscaling","objectmeta-v1-meta","objectfieldselector-v1-core","nonresourceattributes-v1-authorization","nodesysteminfo-v1-core","nodeselectorterm-v1-core","nodeselectorrequirement-v1-core","nodeselector-v1-core","nodedaemonendpoints-v1-core","nodecondition-v1-core","nodeaffinity-v1-core","nodeaddress-v1-core","networkpolicyport-v1beta1-extensions","networkpolicypeer-v1beta1-extensions","networkpolicyingressrule-v1beta1-extensions","nfsvolumesource-v1-core","metricstatus-v2alpha1-autoscaling","metricspec-v2alpha1-autoscaling","localobjectreference-v1-core","loadbalancerstatus-v1-core","loadbalanceringress-v1-core","listmeta-v1-meta","limitrangeitem-v1-core","lifecycle-v1-core","labelselectorrequirement-v1-meta","labelselector-v1-meta","keytopath-v1-core","jobtemplatespec-v2alpha1-batch","jobcondition-v1-batch","ingresstls-v1beta1-extensions","ingressrule-v1beta1-extensions","ingressbackend-v1beta1-extensions","iscsivolumesource-v1-core","idrange-v1beta1-extensions","hostportrange-v1beta1-extensions","hostpathvolumesource-v1-core","handler-v1-core","httpingressrulevalue-v1beta1-extensions","httpingresspath-v1beta1-extensions","httpheader-v1-core","httpgetaction-v1-core","groupversionfordiscovery-v1-meta","glusterfsvolumesource-v1-core","gitrepovolumesource-v1-core","gcepersistentdiskvolumesource-v1-core","flockervolumesource-v1-core","flexvolumesource-v1-core","fsgroupstrategyoptions-v1beta1-extensions","fcvolumesource-v1-core","execaction-v1-core","eviction-v1beta1-policy","eventsource-v1-core","envvarsource-v1-core","envvar-v1-core","envfromsource-v1-core","endpointsubset-v1-core","endpointport-v1-core","endpointaddress-v1-core","emptydirvolumesource-v1-core","downwardapivolumesource-v1-core","downwardapivolumefile-v1-core","downwardapiprojection-v1-core","deploymentcondition-v1beta1-apps","deleteoptions-v1-meta","daemonsetupdatestrategy-v1beta1-extensions","daemonendpoint-v1-core","crossversionobjectreference-v1-autoscaling","containerstatewaiting-v1-core","containerstateterminated-v1-core","containerstaterunning-v1-core","containerstate-v1-core","containerport-v1-core","containerimage-v1-core","configmapvolumesource-v1-core","configmapprojection-v1-core","configmapkeyselector-v1-core","configmapenvsource-v1-core","componentcondition-v1-core","cindervolumesource-v1-core","certificatesigningrequestcondition-v1beta1-certificates","cephfsvolumesource-v1-core","capabilities-v1-core","azurefilevolumesource-v1-core","azurediskvolumesource-v1-core","attachedvolume-v1-core","affinity-v1-core","awselasticblockstorevolumesource-v1-core","apiversions-v1-meta","apiversion-v1beta1-extensions","apiresource-v1-meta","apigroup-v1-meta","-strong-definitions-strong-","watch-list-all-namespaces-531","watch-list-530","watch-529","list-all-namespaces-528","list-527","read-526","-strong-read-operations-strong--525","delete-collection-524","delete-523","patch-522","replace-521","create-520","-strong-write-operations-strong--519","networkpolicy-v1beta1-extensions","create-518","-strong-write-operations-strong--517","tokenreview-v1-authentication","create-516","-strong-write-operations-strong--515","subjectaccessreview-v1-authorization","watch-list-all-namespaces-514","watch-list-513","watch-512","list-all-namespaces-511","list-510","read-509","-strong-read-operations-strong--508","delete-collection-507","delete-506","patch-505","replace-504","create-503","-strong-write-operations-strong--502","serviceaccount-v1-core","create-501","-strong-write-operations-strong--500","selfsubjectaccessreview-v1-authorization","watch-list-all-namespaces-499","watch-list-498","watch-497","list-all-namespaces-496","list-495","read-494","-strong-read-operations-strong--493","delete-collection-492","delete-491","patch-490","replace-489","create-488","-strong-write-operations-strong--487","rolebinding-v1beta1-rbac","watch-list-all-namespaces-486","watch-list-485","watch-484","list-all-namespaces-483","list-482","read-481","-strong-read-operations-strong--480","delete-collection-479","delete-478","patch-477","replace-476","create-475","-strong-write-operations-strong--474","role-v1beta1-rbac","replace-status-473","read-status-472","patch-status-471","-strong-status-operations-strong--470","watch-list-all-namespaces-469","watch-list-468","watch-467","list-all-namespaces-466","list-465","read-464","-strong-read-operations-strong--463","delete-collection-462","delete-461","patch-460","replace-459","create-458","-strong-write-operations-strong--457","resourcequota-v1-core","replace-status-456","read-status-455","patch-status-454","-strong-status-operations-strong--453","watch-list-452","watch-451","list-450","read-449","-strong-read-operations-strong--448","delete-collection-447","delete-446","patch-445","replace-444","create-443","-strong-write-operations-strong--442","persistentvolume-v1-core","replace-proxy-path-441","replace-proxy-440","replace-connect-proxy-path-439","replace-connect-proxy-438","head-connect-proxy-path-437","head-connect-proxy-436","get-proxy-path-435","get-proxy-434","get-connect-proxy-path-433","get-connect-proxy-432","delete-proxy-path-431","delete-proxy-430","delete-connect-proxy-path-429","delete-connect-proxy-428","create-proxy-path-427","create-proxy-426","create-connect-proxy-path-425","create-connect-proxy-424","-strong-proxy-operations-strong--423","replace-status-422","read-status-421","patch-status-420","-strong-status-operations-strong--419","watch-list-418","watch-417","list-416","read-415","-strong-read-operations-strong--414","delete-collection-413","delete-412","patch-411","replace-410","create-409","-strong-write-operations-strong--408","node-v1-core","replace-status-407","read-status-406","patch-status-405","-strong-status-operations-strong--404","watch-list-403","watch-402","list-401","read-400","-strong-read-operations-strong--399","delete-collection-398","delete-397","patch-396","replace-395","create-394","-strong-write-operations-strong--393","namespace-v1-core","create-392","-strong-write-operations-strong--391","localsubjectaccessreview-v1-authorization","list-390","read-389","-strong-read-operations-strong--388","componentstatus-v1-core","watch-list-387","watch-386","list-385","read-384","-strong-read-operations-strong--383","delete-collection-382","delete-381","patch-380","replace-379","create-378","-strong-write-operations-strong--377","clusterrolebinding-v1beta1-rbac","watch-list-376","watch-375","list-374","read-373","-strong-read-operations-strong--372","delete-collection-371","delete-370","patch-369","replace-368","create-367","-strong-write-operations-strong--366","clusterrole-v1beta1-rbac","replace-status-365","-strong-status-operations-strong--364","watch-list-363","watch-362","list-361","read-360","-strong-read-operations-strong--359","delete-collection-358","delete-357","patch-356","replace-355","create-354","-strong-write-operations-strong--353","certificatesigningrequest-v1beta1-certificates","create-352","-strong-write-operations-strong--351","binding-v1-core","-strong-cluster-strong-","watch-list-350","watch-349","list-348","read-347","-strong-read-operations-strong--346","delete-collection-345","delete-344","patch-343","replace-342","create-341","-strong-write-operations-strong--340","podsecuritypolicy-v1beta1-extensions","watch-list-all-namespaces-339","watch-list-338","watch-337","list-all-namespaces-336","list-335","read-334","-strong-read-operations-strong--333","delete-collection-332","delete-331","patch-330","replace-329","create-328","-strong-write-operations-strong--327","podpreset-v1alpha1-settings","watch-list-326","watch-325","list-324","read-323","-strong-read-operations-strong--322","delete-collection-321","delete-320","patch-319","replace-318","create-317","-strong-write-operations-strong--316","thirdpartyresource-v1beta1-extensions","replace-status-315","read-status-314","patch-status-313","-strong-status-operations-strong--312","watch-list-all-namespaces-311","watch-list-310","watch-309","list-all-namespaces-308","list-307","read-306","-strong-read-operations-strong--305","delete-collection-304","delete-303","patch-302","replace-301","create-300","-strong-write-operations-strong--299","poddisruptionbudget-v1beta1-policy","watch-list-all-namespaces-298","watch-list-297","watch-296","list-all-namespaces-295","list-294","read-293","-strong-read-operations-strong--292","delete-collection-291","delete-290","patch-289","replace-288","create-287","-strong-write-operations-strong--286","podtemplate-v1-core","replace-status-285","read-status-284","patch-status-283","-strong-status-operations-strong--282","watch-list-all-namespaces-281","watch-list-280","watch-279","list-all-namespaces-278","list-277","read-276","-strong-read-operations-strong--275","delete-collection-274","delete-273","patch-272","replace-271","create-270","-strong-write-operations-strong--269","horizontalpodautoscaler-v1-autoscaling","watch-list-all-namespaces-268","watch-list-267","watch-266","list-all-namespaces-265","list-264","read-263","-strong-read-operations-strong--262","delete-collection-261","delete-260","patch-259","replace-258","create-257","-strong-write-operations-strong--256","limitrange-v1-core","watch-list-all-namespaces-255","watch-list-254","watch-253","list-all-namespaces-252","list-251","read-250","-strong-read-operations-strong--249","delete-collection-248","delete-247","patch-246","replace-245","create-244","-strong-write-operations-strong--243","event-v1-core","-strong-metadata-strong-","volume-v1-core","watch-list-242","watch-241","list-240","read-239","-strong-read-operations-strong--238","delete-collection-237","delete-236","patch-235","replace-234","create-233","-strong-write-operations-strong--232","storageclass-v1-storage","replace-status-231","read-status-230","patch-status-229","-strong-status-operations-strong--228","watch-list-all-namespaces-227","watch-list-226","watch-225","list-all-namespaces-224","list-223","read-222","-strong-read-operations-strong--221","delete-collection-220","delete-219","patch-218","replace-217","create-216","-strong-write-operations-strong--215","persistentvolumeclaim-v1-core","watch-list-all-namespaces-214","watch-list-213","watch-212","list-all-namespaces-211","list-210","read-209","-strong-read-operations-strong--208","delete-collection-207","delete-206","patch-205","replace-204","create-203","-strong-write-operations-strong--202","secret-v1-core","watch-list-all-namespaces-201","watch-list-200","watch-199","list-all-namespaces-198","list-197","read-196","-strong-read-operations-strong--195","delete-collection-194","delete-193","patch-192","replace-191","create-190","-strong-write-operations-strong--189","configmap-v1-core","-strong-config-storage-strong-","replace-proxy-path-188","replace-proxy-187","replace-connect-proxy-path-186","replace-connect-proxy-185","head-connect-proxy-path-184","head-connect-proxy-183","get-proxy-path-182","get-proxy-181","get-connect-proxy-path-180","get-connect-proxy-179","delete-proxy-path-178","delete-proxy-177","delete-connect-proxy-path-176","delete-connect-proxy-175","create-proxy-path-174","create-proxy-173","create-connect-proxy-path-172","create-connect-proxy-171","-strong-proxy-operations-strong--170","replace-status-169","read-status-168","patch-status-167","-strong-status-operations-strong--166","watch-list-all-namespaces-165","watch-list-164","watch-163","list-all-namespaces-162","list-161","read-160","-strong-read-operations-strong--159","delete-158","patch-157","replace-156","create-155","-strong-write-operations-strong--154","service-v1-core","replace-status-153","read-status-152","patch-status-151","-strong-status-operations-strong--150","watch-list-all-namespaces-149","watch-list-148","watch-147","list-all-namespaces-146","list-145","read-144","-strong-read-operations-strong--143","delete-collection-142","delete-141","patch-140","replace-139","create-138","-strong-write-operations-strong--137","ingress-v1beta1-extensions","watch-list-all-namespaces-136","watch-list-135","watch-134","list-all-namespaces-133","list-132","read-131","-strong-read-operations-strong--130","delete-collection-129","delete-128","patch-127","replace-126","create-125","-strong-write-operations-strong--124","endpoints-v1-core","-strong-discovery-load-balancing-strong-","replace-status-123","read-status-122","patch-status-121","-strong-status-operations-strong--120","watch-list-all-namespaces-119","watch-list-118","watch-117","list-all-namespaces-116","list-115","read-114","-strong-read-operations-strong--113","delete-collection-112","delete-111","patch-110","replace-109","create-108","-strong-write-operations-strong--107","statefulset-v1beta1-apps","replace-status-106","read-status-105","patch-status-104","-strong-status-operations-strong--103","watch-list-all-namespaces-102","watch-list-101","watch-100","list-all-namespaces-99","list-98","read-97","-strong-read-operations-strong--96","delete-collection-95","delete-94","patch-93","replace-92","create-91","-strong-write-operations-strong--90","replicationcontroller-v1-core","patch-scale","replace-scale","read-scale","-strong-misc-operations-strong--89","replace-status-88","read-status-87","patch-status-86","-strong-status-operations-strong--85","watch-list-all-namespaces-84","watch-list-83","watch-82","list-all-namespaces-81","list-80","read-79","-strong-read-operations-strong--78","delete-collection-77","delete-76","patch-75","replace-74","create-73","-strong-write-operations-strong--72","replicaset-v1beta1-extensions","read-log","-strong-misc-operations-strong--71","replace-proxy-path","replace-proxy","replace-connect-proxy-path","replace-connect-proxy","head-connect-proxy-path","head-connect-proxy","get-proxy-path","get-proxy","get-connect-proxy-path","get-connect-proxy","get-connect-portforward","delete-proxy-path","delete-proxy","delete-connect-proxy-path","delete-connect-proxy","create-proxy-path","create-proxy","create-connect-proxy-path","create-connect-proxy","create-connect-portforward","-strong-proxy-operations-strong-","replace-status-70","read-status-69","patch-status-68","-strong-status-operations-strong--67","watch-list-all-namespaces-66","watch-list-65","watch-64","list-all-namespaces-63","list-62","read-61","-strong-read-operations-strong--60","delete-collection-59","delete-58","patch-57","replace-56","create-55","-strong-write-operations-strong--54","pod-v1-core","replace-status-53","read-status-52","patch-status-51","-strong-status-operations-strong--50","watch-list-all-namespaces-49","watch-list-48","watch-47","list-all-namespaces-46","list-45","read-44","-strong-read-operations-strong--43","delete-collection-42","delete-41","patch-40","replace-39","create-38","-strong-write-operations-strong--37","job-v1-batch","rollback","-strong-misc-operations-strong-","replace-status-36","read-status-35","patch-status-34","-strong-status-operations-strong--33","watch-list-all-namespaces-32","watch-list-31","watch-30","list-all-namespaces-29","list-28","read-27","-strong-read-operations-strong--26","delete-collection-25","delete-24","patch-23","replace-22","create-21","-strong-write-operations-strong--20","deployment-v1beta1-apps","replace-status-19","read-status-18","patch-status-17","-strong-status-operations-strong--16","watch-list-all-namespaces-15","watch-list-14","watch-13","list-all-namespaces-12","list-11","read-10","-strong-read-operations-strong--9","delete-collection-8","delete-7","patch-6","replace-5","create-4","-strong-write-operations-strong--3","daemonset-v1beta1-extensions","replace-status","read-status","patch-status","-strong-status-operations-strong-","watch-list-all-namespaces","watch-list","watch","list-all-namespaces","list","read-2","-strong-read-operations-strong-","delete-collection","delete-1","patch","replace","create","-strong-write-operations-strong-","cronjob-v2alpha1-batch","container-v1-core","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]}})();
\ No newline at end of file
diff --git a/docs/resources-reference/v1.6/index.html b/docs/resources-reference/v1.6/index.html
index 0bf95c6a14..6ed4ba4fc2 100644
--- a/docs/resources-reference/v1.6/index.html
+++ b/docs/resources-reference/v1.6/index.html
@@ -15,15 +15,15 @@
example
WORKLOADS
-
Worloads resources are responsible for managing and running your containers on the cluster. Containers are created
-by Controllers through Pods. Pods run Containers and provide environmental dependencies such as shared or
-persistent storage Volumes and Configuration or Secret data injected into the
+
Worloads resources are responsible for managing and running your containers on the cluster. Containers are created
+by Controllers through Pods. Pods run Containers and provide environmental dependencies such as shared or
+persistent storage Volumes and Configuration or Secret data injected into the
container.
The most common Controllers are:
-
Deployments for stateless persistent apps (e.g. http servers)
-
StatefulSets for stateful persistent apps (e.g. databases)
-
Jobs for run-to-completion apps (e.g. batch jobs).
+
Deployments for stateless persistent apps (e.g. http servers)
+
StatefulSets for stateful persistent apps (e.g. databases)
+
Jobs for run-to-completion apps (e.g. batch jobs).
@@ -52,7 +52,7 @@ container.
-
+
@@ -60,7 +60,7 @@ container.
A single application container that you want to run within a pod.
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands
List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
MinReadySeconds minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).
Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template
Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs
CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.
Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.
List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers
ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod
List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers
SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.
Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.
Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
@@ -1536,14 +1536,14 @@ Appears In ReplicationController Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
@@ -1558,7 +1558,7 @@ Appears In ReplicationController The number of available replicas (ready for at least minReadySeconds) for this replication controller.
Replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
ServiceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.
Template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
VolumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
Discovery and Load Balancing resources are responsible for stitching your workloads together into an accessible Loadbalanced Service. By default,
Workloads are only accessible within the cluster, and they must be exposed externally using a either
-a LoadBalancer or NodePortService. For development, internally accessible
+a LoadBalancer or NodePortService. For development, internally accessible
Workloads can be accessed via proxy through the api master using the kubectl proxy command.
Common resource types:
-
Services for providing a single ip endpoint loadbalanced across multiple Workload replicas.
-
Ingress for providing a https(s) endpoint http(s) routed to one or more Services
+
Services for providing a single ip endpoint loadbalanced across multiple Workload replicas.
+
Ingress for providing a https(s) endpoint http(s) routed to one or more Services
@@ -1788,7 +1788,7 @@ Workloads can be accessed via proxy through the api master using the kubec
},
]
+Appears In EndpointsList
The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.
TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.
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: http://kubernetes.io/docs/user-guide/services-firewalls
Config and Storage resources are responsible for injecting data into your applications and persisting data externally to your container.
Common resource types:
-
ConfigMaps for providing text key value pairs injected into the application through environment variables, command line arguments, or files
-
Secrets for providing binary data injected into the application through files
-
Volumes for providing a filesystem external to the Container. Maybe shared across Containers within the same Pod and have a lifetime persisting beyond a Container or Pod.
+
ConfigMaps for providing text key value pairs injected into the application through environment variables, command line arguments, or files
+
Secrets for providing binary data injected into the application through files
+
Volumes for providing a filesystem external to the Container. Maybe shared across Containers within the same Pod and have a lifetime persisting beyond a Container or Pod.
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
@@ -2679,10 +2679,10 @@ Appears In PodPresetSpecHorizontalPodAutoscaler (HPA) for automatically scaling the replicacount of your workloads in response to load
+
HorizontalPodAutoscaler (HPA) for automatically scaling the replicacount of your workloads in response to load
PodDisruptionBudget for configuring how many replicas in a given workload maybe made concurrently unavailable when performing maintenance.
ThirdPartyResource for extending the Kubernetes APIs with your own types
-
Event for notification of resource lifecycle events in the cluster.
+
Event for notification of resource lifecycle events in the cluster.
reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.
@@ -3193,14 +3193,14 @@ Appears In PodDisruptionBudget An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".
A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.
DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capabiility in both DefaultAddCapabilities and RequiredDropCapabilities.
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.
Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.
ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#binding
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running
HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action
ServiceAccount binds together: a name, understood by users, and perhaps by peripheral systems, for an identity a principal that can be authenticated and authorized * a set of secrets
AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: http://kubernetes.io/docs/user-guide/secrets#manually-specifying-an-imagepullsecret
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.
Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
@@ -5529,7 +5529,7 @@ Appears In ThirdPartyResource Represents a Persistent Disk resource in AWS.
An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
@@ -6904,7 +6904,7 @@ The resulting set of endpoints can be viewed as:
a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
b: [ 10.10.1.1:309, 10.10.2.2:309 ]
+Appears In Endpoints
IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.
Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The : delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.
List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.
This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.
A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
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.
PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key tches that of any node on which a pod of the set of pods is running
The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.
PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.
An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.
Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.
targetAverageValue is the the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if targetAverageValue was set in the corresponding metric specification.
currentAverageValue is the the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.