From 8a484aff51fd0333dfe84a572901914d904eec6a Mon Sep 17 00:00:00 2001 From: gavinB-orange Date: Tue, 4 Oct 2016 19:08:22 +0200 Subject: [PATCH 001/132] Update minikube.md to cover use behind a web proxy In a corporate environment you need to pass proxy information, and just setting the appropriate environment variables does not work. The code snippet here works for me --- docs/getting-started-guides/minikube.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index 020fc5e257..1ad16b6d28 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -99,6 +99,14 @@ Kubectl is now configured to use the cluster. This will build and start a lightweight local cluster, consisting of a master, etcd, Docker and a single node. +If you are behind a web proxy, you will need to pass this information in e.g. via + +``` + +https_proxy= minikube start --docker-env HTTP_PROXY= --docker-env HTTPS_PROXY= --docker-env NO_PROXY=192.168.99.0/24 + +Unfortunately just setting the environment variables will not work. +``` Minikube will also create a "minikube" context, and set it to default in kubectl. To switch back to this context later, run this command: `kubectl config use-context minikube`. From 199101048df6f84a80349464f3fb77a17fd799eb Mon Sep 17 00:00:00 2001 From: Devin Donnelly Date: Wed, 2 Nov 2016 16:27:27 -0700 Subject: [PATCH 002/132] Adds Concepts root page and starts to fill out the underlying section. --- docs/concepts/abstractions/pod.md | 3 ++ docs/concepts/index.md | 46 ++++++++++++++++++++++++++++++- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 docs/concepts/abstractions/pod.md diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md new file mode 100644 index 0000000000..ec380ec43f --- /dev/null +++ b/docs/concepts/abstractions/pod.md @@ -0,0 +1,3 @@ +--- +--- + diff --git a/docs/concepts/index.md b/docs/concepts/index.md index db56a3d05b..3511f2354d 100644 --- a/docs/concepts/index.md +++ b/docs/concepts/index.md @@ -1,7 +1,51 @@ --- --- -The Concepts section of the Kubernetes documentation is a work in progress. +The Concepts section helps you learn about the parts of the Kubernetes system and the abstractions Kubernetes uses to represent your cluster, and helps you obtain a deeper understanding of how Kubernetes works. + +## Overview + +To work with Kubernetes, you use the **Kubernetes API abstractions** to describe your cluster's **desired state**: what applications or other workloads you want to run, what container images they use, the number of replicas, what network and disk resources you want to make available, and more. You set your desired state by using the Kubernetes API, typically via the command-line interface, `kubectl`. You can also use the Kubernetes API directly to interact with the cluster and set or modify your desired state. + +Once you've set your desired state, the **Kubernetes Control Plane** works to make the cluster's current state match the desired state. To do so, Kuberentes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of processes running on your cluster: the Kubernetes Master, and kubelet and kube-proxy processes running on your cluster's individual nodes. + +## Kubernetes Abstractions + +Kubernetes contains a number of abstractions that represent your deployed containerized applications and workloads, along with their associated network and disk resources. These abstractions are made manifest as objects in the Kubernetes API. The basic Kubernetes abstractions include: + +* Pod +* Service +* Volume +* Namespace + +In addition, Kubernetes contains a number of higher-level abstractions that build upon the basic abstractions, and provide additional functionality and convenience features. They include: + +* ReplicaSet +* Deployment +* StatefulSet +* DaemonSet +* Job + +## Kubernetes Control Plane + +The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. When you use the Kubernetes API to create deployments, for example, the Kubernetes Control Plane carries out your instructions. + +### Kubernetes Master + +The Kubernetes master is responsible for maintaining the desired state for your cluster. The Kubernetes master(s) runs the following processes: + +* API Server +* Scheduler +* Etcd +* Controller Manager + +### Kubernetes Nodes + +The nodes in a cluster are the machines (VMs, physical servers, etc) that run your applications and cloud workflows. These nodes are controlled by the Kubernetes master. The following processes run on each node in a Kubernetes cluster: + +* Kubelet +* Docker-daemon +* kube-proxy #### Object Metadata From 6eea38eddb71bbab2dc9ffc121f0cd5e25575fc5 Mon Sep 17 00:00:00 2001 From: Devin Donnelly Date: Thu, 17 Nov 2016 16:10:17 -0800 Subject: [PATCH 003/132] First draft of Concepts landing page. Adds Kubernetes Objects overview. Adds first draft of Pod. --- docs/concepts/abstractions/overview.md | 58 +++++++++++++++++++++ docs/concepts/abstractions/pod.md | 71 ++++++++++++++++++++++++++ docs/concepts/index.md | 16 +++--- 3 files changed, 138 insertions(+), 7 deletions(-) create mode 100644 docs/concepts/abstractions/overview.md diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md new file mode 100644 index 0000000000..9b561d1b3e --- /dev/null +++ b/docs/concepts/abstractions/overview.md @@ -0,0 +1,58 @@ +--- +--- + +{% capture overview %} +This page explains how Kubernetes objects are represented in the Kubernetes API, and how you can express them in `.yaml` format. +{% endcapture %} + +{% capture body %} +### Understanding Kubernetes Objects + +*Kubernetes Objects* are persistent entities in the Kubernetes system. Kubenetes uses these entities to represent the state of your cluster. Specifically, they can describe: + +* What containerized applications are running (and on which nodes) +* The resources available to those applications +* The policies around how those applications behave, such as restart policies, upgrades, and fault-tolerance + +When you create a Kubernetes object, you create a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure that the entity exists. By creating an object, you're effectively telling the Kubernetes system what you want your cluster to be doing; this is your cluster's **desired state**. + +To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. + +#### Object Spec and Status + +Every Kubernetes object has two major nested object fields: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied by the Kubernetes system. At any given time, the [Kubernetes Control Plane](/docs/concepts/control-plane/overview/) actively maintains an object's actual state to match the desired state you supplied. + +For more information on the object spec and status, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status). + +#### Describing a Kubernetes Object + +When you create an object in Kubernetes, you need to describe it. Your description must provide some basic information about the object along with the object spec that represents your desired state. The Kubernetes API communicates this information by passing JSON; when you make Kubernetes API calls or use the `kubectl` command-line interface, **you can express that JSON using a `.yaml` file.** + +Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes [Deployment](/docs/concepts/abstractions/deployment/): + +{% include code.html language="yaml" file="nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %} + +One way to create a Deployment using a `.yaml` file like the one above is to use the []`kubectl create`]() command in the `kubectl` command-line interface, passing the `.yaml` file as an argument. Here's an example: + +```shell +$ kubectl create -f docs/user-guide/nginx-deployment.yaml --record +deployment "nginx-deployment" created +``` + +#### Required Fields + +In the `.yaml` file for the Kubernetes object you want to create, you'll need to set values for the following fields: + +* `apiVersion` - Which version of the Kubernetes API you're using to create this object +* `kind` - What kind of object you want to create +* `metadata` - Data that helps uniquely identify the object, including a `name` string, UID, and optional `namespace` + +You'll also need to provide the object `spec` field. The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API reference](/docs/api/) can help you find the spec format for all of the objects you can create using Kubernetes. + +{% endcapture %} + +{% capture whatsnext %} +* Learn about the most important basic Kubernetes objects, such as [Pod](/docs/concepts/abstractions/pod/). +{% endcapture %} + +{% include templates/concept.md %} \ No newline at end of file diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md index ec380ec43f..4fd21471e9 100644 --- a/docs/concepts/abstractions/pod.md +++ b/docs/concepts/abstractions/pod.md @@ -1,3 +1,74 @@ --- --- +{% capture overview %} +This page provides an overview of `Pod`, the smallest deployable object in the Kubernetes object model. +{% endcapture %} + +* TOC +{:toc} + +{% capture body %} +### Understanding Pods + +A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents a running process on your cluster. + +A Pod encapsulates an application container (or, in some cases, multiple containers), storage resources, and options that govern how the container(s) should run. A Pod represents a unit of deployment: *a single workload in Kubernetes*, which might consist of either a single application or a small number of applications that are tightly coupled and that share resources. + +> [Docker](https://www.docker.com) is the most common container runtime used in a Kubernetes Pod, but Pods support other container runtimes as well. + +Pods are employed a number of ways in a Kubernetes cluster, including: + +* **Pods that run a single application container**. The "one-application per Pod" model is the most common Kubernetes use case; in this case, you can think of a Pod as a wrapper around a single application, and Kubernetes manages the Pods rather than the containers directly. +* **Pods that run multiple application containers that need to work together**. Pods can support multiple application containers that are tightly coupled and need to share resources. You can think of these applications as forming a *single cohesive unit of service*. The Pod wraps them together with shared resources as a single managable entity. + +Pods typically *do not* model multiple instances of the same application container. Instead, you can have Kubernetes maintain separate Pods for each instance you want to run, usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information. + +#### How Pods Manage Containers + +Pods are designed to support multiple cooperating processes (as application containers) that form a cohesive unit of service. The containers in a Pod are automatically co-located and co-scheduled on the same phyiscal or virtual machine in the cluster. The containers can share resources and dependencies, communicate with one another, and coordinate when and how they are terminated. + +Pods provide two kinds of shared resources for their constituent containers: *networking* and *storage*. + +##### Networking + +Each Pod is assigned a unique IP address. Every the container in a pod shares the network namespace, including the IP address and network ports. Containers *inside a Pod* can communicate with one another using `localhost`. When containers in a Pod communicate with entities *outside the Pod*, they must coordinate how they use the shared network resources (such as ports). + +##### Storage + +A Pod can specify a set of shared storage *volumes*. All containers in the pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a pod to survive in case one of the containers within needs to be restarted. See [Volumes]() for more information on how Kubernetes implements shared storage in a Pod. + +### Working with Pods + +When a Pod gets created (directly or indirectly), it is scheduled to run on a [node]() in your cluster, and remains on that node until terminated or deleted. Should a node in the cluster fail, the Pods scheduled on that node are deleted after a timeout period. See [Termination](#pod-termination) for more details on how Pods terminate in Kubernetes. + +You'll rarely create or interact directly with individual Pods in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral entities (as opposed to a durable one). A Pod won't survive a scheduling failure, a node failure, or an eviction due to a lack of resources or node maintenance. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a higher-level abstraction called a *Controller*. + +#### Pods and Controllers + +A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope (for example, if a node fails, a Controller might schedule an identical replacement Pod on a different node). + +Some examples of Controllers that contain one or more pods include: + +* [Deployment]() +* [StatefulSet]() +* [DaemonSet]() + +In general, Controllers use a [Pod Template]() that you provide to create the Pods for which it is responsible. + +#### Pod Termination + +Since Pods represent processes running on your cluster, Kubernetes provides for *graceful termination* when Pods are no longer needed. Kubernetes implements graceful termination by applying a default *grace period* of 30 seconds from the time that you issue a termination request. After the grace period expires, Kubernetes issues a `KILL` signal to the relevant processes and the Pod is deleted from the Kubernetes Master. + +> **Note:** The grace period is configurable; you can set your own grace period when interacting with the cluster to request termination, such as using the `kubectl delete` command. See the [Terminating a Pod]() tutorial for more information. + +{% endcapture %} + + +{% if whatsnext %} + +### What's next + +{{ whatsnext }} + +{% endif %} \ No newline at end of file diff --git a/docs/concepts/index.md b/docs/concepts/index.md index 3511f2354d..a6b35bdfde 100644 --- a/docs/concepts/index.md +++ b/docs/concepts/index.md @@ -5,20 +5,22 @@ The Concepts section helps you learn about the parts of the Kubernetes system an ## Overview -To work with Kubernetes, you use the **Kubernetes API abstractions** to describe your cluster's **desired state**: what applications or other workloads you want to run, what container images they use, the number of replicas, what network and disk resources you want to make available, and more. You set your desired state by using the Kubernetes API, typically via the command-line interface, `kubectl`. You can also use the Kubernetes API directly to interact with the cluster and set or modify your desired state. +To work with Kubernetes, you use *Kubernetes API objects* to describe your cluster's *desired state*: what applications or other workloads you want to run, what container images they use, the number of replicas, what network and disk resources you want to make available, and more. You set your desired state by creating objects using the Kubernetes API, typically via the command-line interface, `kubectl`. You can also use the Kubernetes API directly to interact with the cluster and set or modify your desired state. -Once you've set your desired state, the **Kubernetes Control Plane** works to make the cluster's current state match the desired state. To do so, Kuberentes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of processes running on your cluster: the Kubernetes Master, and kubelet and kube-proxy processes running on your cluster's individual nodes. +Once you've set your desired state, the *Kubernetes Control Plane* works to make the cluster's current state match the desired state. To do so, Kuberentes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of processes running on your cluster: the Kubernetes Master, and kubelet and kube-proxy processes running on your cluster's individual nodes. -## Kubernetes Abstractions +## Kubernetes Objects -Kubernetes contains a number of abstractions that represent your deployed containerized applications and workloads, along with their associated network and disk resources. These abstractions are made manifest as objects in the Kubernetes API. The basic Kubernetes abstractions include: +Kubernetes contains a number of abstractions that represent your the state of your system: deployed containerized applications and workloads, their associated network and disk resources, and other information about what your cluster is doing. These abstractions are represented by objects in the Kubernetes API; see the [Kubernetes Objects overview](/docs/concepts/abstractions/overview/) for more details. -* Pod +The basic Kubernetes objects include: + +* [Pod](/docs/concepts/abstractions/pod/) * Service * Volume * Namespace -In addition, Kubernetes contains a number of higher-level abstractions that build upon the basic abstractions, and provide additional functionality and convenience features. They include: +In addition, Kubernetes contains a number of higher-level abstractions that build upon the basic objects, and provide additional functionality and convenience features. They include: * ReplicaSet * Deployment @@ -28,7 +30,7 @@ In addition, Kubernetes contains a number of higher-level abstractions that buil ## Kubernetes Control Plane -The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. When you use the Kubernetes API to create deployments, for example, the Kubernetes Control Plane carries out your instructions. +The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. When you use the Kubernetes API to create a Deployment object, for example, the Kubernetes Control Plane carries out your instructions. ### Kubernetes Master From a21c80911e6a50e33f1add5fc1b7c832d4cb1ee5 Mon Sep 17 00:00:00 2001 From: Devin Donnelly Date: Thu, 17 Nov 2016 16:22:46 -0800 Subject: [PATCH 004/132] Attempted include file fix for sample Deployment .yaml file. --- docs/concepts/abstractions/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md index 9b561d1b3e..c4899afa44 100644 --- a/docs/concepts/abstractions/overview.md +++ b/docs/concepts/abstractions/overview.md @@ -30,7 +30,7 @@ When you create an object in Kubernetes, you need to describe it. Your descripti Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes [Deployment](/docs/concepts/abstractions/deployment/): -{% include code.html language="yaml" file="nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %} +{% include code.html language="yaml" file="/docs/user-guide/nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %} One way to create a Deployment using a `.yaml` file like the one above is to use the []`kubectl create`]() command in the `kubectl` command-line interface, passing the `.yaml` file as an argument. Here's an example: From 30be38b63f5a249d654e8b132c8987bd4f4c6021 Mon Sep 17 00:00:00 2001 From: Devin Donnelly Date: Fri, 18 Nov 2016 16:37:23 -0800 Subject: [PATCH 005/132] Edited Concepts landing page, Objects overview, and Pod concept documentation to address feedback from pwittroc. --- docs/concepts/abstractions/overview.md | 17 ++++++++---- docs/concepts/abstractions/pod.md | 38 +++++++++++++++++++------- docs/concepts/index.md | 11 ++++++-- 3 files changed, 49 insertions(+), 17 deletions(-) diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md index c4899afa44..8407eecf43 100644 --- a/docs/concepts/abstractions/overview.md +++ b/docs/concepts/abstractions/overview.md @@ -14,19 +14,21 @@ This page explains how Kubernetes objects are represented in the Kubernetes API, * The resources available to those applications * The policies around how those applications behave, such as restart policies, upgrades, and fault-tolerance -When you create a Kubernetes object, you create a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure that the entity exists. By creating an object, you're effectively telling the Kubernetes system what you want your cluster to be doing; this is your cluster's **desired state**. +When you create a Kubernetes object, you create a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure that that object exists. By creating an object, you're effectively telling the Kubernetes system what you want your cluster's workload to look like; this is your cluster's **desired state**. -To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. +To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. Kubernetes currently provides a `golang` client library for this purpose, and other language libraries are being developed. #### Object Spec and Status -Every Kubernetes object has two major nested object fields: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied by the Kubernetes system. At any given time, the [Kubernetes Control Plane](/docs/concepts/control-plane/overview/) actively maintains an object's actual state to match the desired state you supplied. +Every Kubernetes object includes two nested object fields that govern the object's configuration: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied and updated by the Kubernetes system. At any given time, the [Kubernetes Control Plane](/docs/concepts/control-plane/overview/) actively manages an object's actual state to match the desired state you supplied. -For more information on the object spec and status, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status). +For example, a Kubernetes [Deployment]() is an object that can represent an application running on your cluster. When you create the Deployment, you might set the Deployment spec to specify that you want three replicas of the application to be running. The Kubernetes system reads the Deployment spec and starts three instances of your desired application--updating the status to match your spec. If any of those instances should fail (a status change), the Kubernetes system reacts to the difference between spec and status by making a correction--in this case, starting a replacement instance. + +For more information on the object spec, status, and metadata, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status). #### Describing a Kubernetes Object -When you create an object in Kubernetes, you need to describe it. Your description must provide some basic information about the object along with the object spec that represents your desired state. The Kubernetes API communicates this information by passing JSON; when you make Kubernetes API calls or use the `kubectl` command-line interface, **you can express that JSON using a `.yaml` file.** +When you create an object in Kubernetes, you must provide the object spec that describes your desired state for it, as well as some basic information about the object (such as a name). When you use the Kubernetes API to create the object (either directly or via `kubectl`), that API call sends the information to the Kubernetes Master as JSON. **You can express that JSON using a `.yaml` file.** Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes [Deployment](/docs/concepts/abstractions/deployment/): @@ -36,6 +38,11 @@ One way to create a Deployment using a `.yaml` file like the one above is to use ```shell $ kubectl create -f docs/user-guide/nginx-deployment.yaml --record +``` + +The output is similar to this: + +```shell deployment "nginx-deployment" created ``` diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md index 4fd21471e9..fb65c8b33c 100644 --- a/docs/concepts/abstractions/pod.md +++ b/docs/concepts/abstractions/pod.md @@ -13,20 +13,29 @@ This page provides an overview of `Pod`, the smallest deployable object in the K A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents a running process on your cluster. -A Pod encapsulates an application container (or, in some cases, multiple containers), storage resources, and options that govern how the container(s) should run. A Pod represents a unit of deployment: *a single workload in Kubernetes*, which might consist of either a single application or a small number of applications that are tightly coupled and that share resources. +A Pod encapsulates an application container (or, in some cases, multiple containers), storage resources, a unique network IP, and options that govern how the container(s) should run. A Pod represents a unit of deployment: *a single instance of an application in Kubernetes*, which might consist of either a single container or a small number of containers that are tightly coupled and that share resources. > [Docker](https://www.docker.com) is the most common container runtime used in a Kubernetes Pod, but Pods support other container runtimes as well. Pods are employed a number of ways in a Kubernetes cluster, including: -* **Pods that run a single application container**. The "one-application per Pod" model is the most common Kubernetes use case; in this case, you can think of a Pod as a wrapper around a single application, and Kubernetes manages the Pods rather than the containers directly. -* **Pods that run multiple application containers that need to work together**. Pods can support multiple application containers that are tightly coupled and need to share resources. You can think of these applications as forming a *single cohesive unit of service*. The Pod wraps them together with shared resources as a single managable entity. +* **Pods that run a single container**. The "one-container-per-Pod" model is the most common Kubernetes use case; in this case, you can think of a Pod as a wrapper around a single container, and Kubernetes manages the Pods rather than the containers directly. +* **Pods that run multiple containers that need to work together**. A Pod might encapsulate an application that relies on multiple co-located containers that are tightly coupled and need to share resources. These co-located containers might form a single cohesive unit of service--one container serving files from a shared volume to the public, while a separate "sidecar" container refreshes or updates those files. The Pod wraps these containers and storage resources together as a single managable entity. -Pods typically *do not* model multiple instances of the same application container. Instead, you can have Kubernetes maintain separate Pods for each instance you want to run, usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information. +The [Kubernetes Blog](http://blog.kubernetes.io) has some additional information on Pod use cases. For more information, see: -#### How Pods Manage Containers +* [The Distributed System Toolkit: Patterns for Composite Containers](http://blog.kubernetes.io/2015/06/the-distributed-system-toolkit-patterns.html) +* [Container Design Patterns](http://blog.kubernetes.io/2016/06/container-design-patterns.html) -Pods are designed to support multiple cooperating processes (as application containers) that form a cohesive unit of service. The containers in a Pod are automatically co-located and co-scheduled on the same phyiscal or virtual machine in the cluster. The containers can share resources and dependencies, communicate with one another, and coordinate when and how they are terminated. +Note that each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, such Pods are usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information. + +#### How Pods Manage Multiple Containers + +Pods are designed to support multiple cooperating processes (as containers) that form a cohesive unit of service. The containers in a Pod are automatically co-located and co-scheduled on the same phyiscal or virtual machine in the cluster. The containers can share resources and dependencies, communicate with one another, and coordinate when and how they are terminated. + +Note that grouping multiple co-located and co-managed containers in a single Pod is a relatively advanced use case. You should use this pattern only in specific instances in which your containers are tightly coupled. For example, you might have a container that acts as a web server for files in a shared volume, and a separate "sidecar" container that updates those files from a remote source, as in the following diagram: + +![pod diagram](/images/docs/pod.svg){: style="max-width: 50%" } Pods provide two kinds of shared resources for their constituent containers: *networking* and *storage*. @@ -40,13 +49,15 @@ A Pod can specify a set of shared storage *volumes*. All containers in the pod c ### Working with Pods -When a Pod gets created (directly or indirectly), it is scheduled to run on a [node]() in your cluster, and remains on that node until terminated or deleted. Should a node in the cluster fail, the Pods scheduled on that node are deleted after a timeout period. See [Termination](#pod-termination) for more details on how Pods terminate in Kubernetes. +You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a [node]() in your cluster. The Pod remains on that node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources. -You'll rarely create or interact directly with individual Pods in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral entities (as opposed to a durable one). A Pod won't survive a scheduling failure, a node failure, or an eviction due to a lack of resources or node maintenance. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a higher-level abstraction called a *Controller*. +> Note: Restarting a container in a Pod should not be confused with restarting the Pod. The Pod itself does not run, but is an environment the containers run in and persists until it is deleted. + +Pods do not, by themselves, self-heal. If a Pod is scheduled to a node that fails, or if the scheduling operation itself fails, the Pod is deleted; likewise, a Pod won't survive an eviction due to a lack of resources or node maintenance. Kubernetes uses a higher-level abstraction, called a *Controller*, that handles the work of managing the relatively disposable Pod instances. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a Controller. See [Pods and Controllers](#pods-and-controllers) for more information on how Kubernetes uses Controllers to implement Pod scaling and healing. #### Pods and Controllers -A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope (for example, if a node fails, a Controller might schedule an identical replacement Pod on a different node). +A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope. For example, if a node fails, the Controller might automatically replace the Pod by scheduling an identical replacement on a different node). Some examples of Controllers that contain one or more pods include: @@ -58,7 +69,14 @@ In general, Controllers use a [Pod Template]() that you provide to create the Po #### Pod Termination -Since Pods represent processes running on your cluster, Kubernetes provides for *graceful termination* when Pods are no longer needed. Kubernetes implements graceful termination by applying a default *grace period* of 30 seconds from the time that you issue a termination request. After the grace period expires, Kubernetes issues a `KILL` signal to the relevant processes and the Pod is deleted from the Kubernetes Master. +Since Pods represent processes running on your cluster, Kubernetes provides for *graceful termination* when Pods are no longer needed. Kubernetes implements graceful termination by applying a default *grace period* of 30 seconds from the time that you issue a termination request. A typical Pod termination in Kubernetes involves the following steps: + +1. You send a command or API call to terminate the Pod. +1. Kubernetes updates the Pod status to reflect the time after which the Pod is to be considered "dead" (the time of the termination request plus the grace period). +1. Kubernetes marks the Pod state as "Terminating" and stops sending traffic to the Pod. +1. Kubernetes send a `TERM` signal to the Pod, indicating that the Pod should shut down. +1. When the grace period expires, Kubernetes issues a `SIGKILL` to any processes still running in the Pod. +1. Kubernetes removes the Pod from the API server on the Kubernetes Master. > **Note:** The grace period is configurable; you can set your own grace period when interacting with the cluster to request termination, such as using the `kubectl delete` command. See the [Terminating a Pod]() tutorial for more information. diff --git a/docs/concepts/index.md b/docs/concepts/index.md index a6b35bdfde..ab5bd548a5 100644 --- a/docs/concepts/index.md +++ b/docs/concepts/index.md @@ -7,7 +7,12 @@ The Concepts section helps you learn about the parts of the Kubernetes system an To work with Kubernetes, you use *Kubernetes API objects* to describe your cluster's *desired state*: what applications or other workloads you want to run, what container images they use, the number of replicas, what network and disk resources you want to make available, and more. You set your desired state by creating objects using the Kubernetes API, typically via the command-line interface, `kubectl`. You can also use the Kubernetes API directly to interact with the cluster and set or modify your desired state. -Once you've set your desired state, the *Kubernetes Control Plane* works to make the cluster's current state match the desired state. To do so, Kuberentes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of processes running on your cluster: the Kubernetes Master, and kubelet and kube-proxy processes running on your cluster's individual nodes. +Once you've set your desired state, the *Kubernetes Control Plane* works to make the cluster's current state match the desired state. To do so, Kuberentes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of a collection processes running on your cluster: + +* The **Kubernetes Master** is a collection of four processes that run on a single node in your cluster, which is designated as the master node. +* Each individual non-master node in your cluster runs two processes: + * **kubelet**, which communicates with the Kubernetes Master. + * **kube-proxy**, a network proxy which reflects Kubernetes networking services on each node. ## Kubernetes Objects @@ -30,7 +35,9 @@ In addition, Kubernetes contains a number of higher-level abstractions that buil ## Kubernetes Control Plane -The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. When you use the Kubernetes API to create a Deployment object, for example, the Kubernetes Control Plane carries out your instructions. +The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. The Control Plane maintains a record of all of the Kubernetes Objects in the system, and runs continuous control loops to manage those objects' state. At any given time, the Control Plane's control loops will attempt to match the actual state of all the objects in the system to the desired state that you provided when you created those objects. + +For example, When you use the Kubernetes API to create a Deployment object, for example, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state. ### Kubernetes Master From 537893253f98d719185439899af05e032f82dda3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20von=C2=A0Neudeck?= Date: Tue, 29 Nov 2016 00:11:40 +0100 Subject: [PATCH 006/132] Added info about where to add/drop capabilities The user-guide did not mention where to drop/add capabilities in Kubernetes. Added a link to the not yet complete API documentation and an example. --- docs/user-guide/containers.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/user-guide/containers.md b/docs/user-guide/containers.md index cf05278801..26eceebbce 100644 --- a/docs/user-guide/containers.md +++ b/docs/user-guide/containers.md @@ -94,3 +94,24 @@ The relationship between Docker's capabilities and [Linux capabilities](http://m | SETFCAP | CAP_SETFCAP | | WAKE_ALARM | CAP_WAKE_ALARM | | BLOCK_SUSPEND | CAP_BLOCK_SUSPEND | + +Capabilities are added/dropped in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: + +``` +apiVersion: v1 +kind: Pod +metadata: + name: hello-world +spec: + containers: + - name: friendly-container + image: "alpine:3.4" + command: + - echo "hello" + securityContext: + capabilities: + add: + - SYS_NICE + drop: + - KILL +``` From c61aee3c5407da65c1902f9060c9654c1a5f5c17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20von=C2=A0Neudeck?= Date: Tue, 29 Nov 2016 00:34:29 +0100 Subject: [PATCH 007/132] forgot yaml format --- docs/user-guide/containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/containers.md b/docs/user-guide/containers.md index 26eceebbce..c985c94f02 100644 --- a/docs/user-guide/containers.md +++ b/docs/user-guide/containers.md @@ -97,7 +97,7 @@ The relationship between Docker's capabilities and [Linux capabilities](http://m Capabilities are added/dropped in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: -``` +```yaml apiVersion: v1 kind: Pod metadata: From fd0d4112b05302af5ee8e8e30d9cfd4e6f986c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20von=C2=A0Neudeck?= Date: Tue, 29 Nov 2016 00:43:01 +0100 Subject: [PATCH 008/132] fixed indentation, cleaner command --- docs/user-guide/containers.md | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/docs/user-guide/containers.md b/docs/user-guide/containers.md index c985c94f02..7c39f30f09 100644 --- a/docs/user-guide/containers.md +++ b/docs/user-guide/containers.md @@ -101,17 +101,16 @@ Capabilities are added/dropped in the [`SecurityContext`](http://kubernetes.io/d apiVersion: v1 kind: Pod metadata: - name: hello-world + name: hello-world spec: - containers: - - name: friendly-container - image: "alpine:3.4" - command: - - echo "hello" - securityContext: - capabilities: - add: - - SYS_NICE - drop: - - KILL + containers: + - name: friendly-container + image: "alpine:3.4" + command: ["/bin/echo", "hello", "world"] + securityContext: + capabilities: + add: + - SYS_NICE + drop: + - KILL ``` From d0b94ae1b759b6a60ef3aec4156ee4c8cd672818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20von=C2=A0Neudeck?= Date: Mon, 26 Dec 2016 21:04:03 +0100 Subject: [PATCH 009/132] Removed passive voice --- docs/user-guide/containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/containers.md b/docs/user-guide/containers.md index 7c39f30f09..d760c3b84f 100644 --- a/docs/user-guide/containers.md +++ b/docs/user-guide/containers.md @@ -95,7 +95,7 @@ The relationship between Docker's capabilities and [Linux capabilities](http://m | WAKE_ALARM | CAP_WAKE_ALARM | | BLOCK_SUSPEND | CAP_BLOCK_SUSPEND | -Capabilities are added/dropped in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: +You can add/drop capabilities in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: ```yaml apiVersion: v1 From 9fe1e02e728db13a244765d5b977ffdda4839f73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20von=C2=A0Neudeck?= Date: Mon, 26 Dec 2016 21:16:47 +0100 Subject: [PATCH 010/132] replaced "/" with "or" --- docs/user-guide/containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/containers.md b/docs/user-guide/containers.md index d760c3b84f..e597279a4e 100644 --- a/docs/user-guide/containers.md +++ b/docs/user-guide/containers.md @@ -95,7 +95,7 @@ The relationship between Docker's capabilities and [Linux capabilities](http://m | WAKE_ALARM | CAP_WAKE_ALARM | | BLOCK_SUSPEND | CAP_BLOCK_SUSPEND | -You can add/drop capabilities in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: +You can add or drop capabilities in the [`SecurityContext`](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_securitycontext), e.g.: ```yaml apiVersion: v1 From a95cfcddf2c0217b9e8bc90737cca79263f2f371 Mon Sep 17 00:00:00 2001 From: tanshanshan Date: Tue, 3 Jan 2017 16:46:57 +0800 Subject: [PATCH 011/132] replace hack/build-go.sh with make --- docs/admin/multiple-schedulers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/multiple-schedulers.md b/docs/admin/multiple-schedulers.md index eb1c4c44f9..5548f32904 100644 --- a/docs/admin/multiple-schedulers.md +++ b/docs/admin/multiple-schedulers.md @@ -26,7 +26,7 @@ and build the source. ```shell git clone https://github.com/kubernetes/kubernetes.git cd kubernetes -hack/build-go.sh +make ``` Create a container image containing the kube-scheduler binary. Here is the `Dockerfile` From 9300e36e564c90f1110a321554251de4691f8f27 Mon Sep 17 00:00:00 2001 From: Aaron Signorelli Date: Wed, 4 Jan 2017 00:38:40 +0000 Subject: [PATCH 012/132] Fixing typo .PONY -> .PHONY --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 64ceef89a0..3657cb577a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PONY: all build build-preview help serve +.PHONY: all build build-preview help serve help: ## Show this help. @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) From b8b448fb63946bc8500cb5efa4250ad2a45cf3ef Mon Sep 17 00:00:00 2001 From: chentao1596 Date: Wed, 4 Jan 2017 09:16:51 +0800 Subject: [PATCH 013/132] change the flag which controlls the cbr0's create --- docs/admin/networking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/networking.md b/docs/admin/networking.md index e1de39fdbd..84e612bfdd 100644 --- a/docs/admin/networking.md +++ b/docs/admin/networking.md @@ -130,7 +130,7 @@ We start Docker with: DOCKER_OPTS="--bridge=cbr0 --iptables=false --ip-masq=false" ``` -This bridge is created by Kubelet (controlled by the `--configure-cbr0=true` +This bridge is created by Kubelet (controlled by the `--network-plugin=kubenet` flag) according to the `Node`'s `spec.podCIDR`. Docker will now allocate IPs from the `cbr-cidr` block. Containers can reach From 40c801bd111a5fe7bb0902881422b0c43cb7ec39 Mon Sep 17 00:00:00 2001 From: Minhan Xia Date: Wed, 4 Jan 2017 17:33:09 -0800 Subject: [PATCH 014/132] delete exec network plugin --- docs/admin/network-plugins.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/admin/network-plugins.md b/docs/admin/network-plugins.md index dd51a11b86..d5e05ac7b1 100644 --- a/docs/admin/network-plugins.md +++ b/docs/admin/network-plugins.md @@ -13,7 +13,6 @@ __Disclaimer__: Network plugins are in alpha. Its contents will change rapidly. Network plugins in Kubernetes come in a few flavors: -* Plain vanilla exec plugins - deprecated in favor of CNI plugins. * CNI plugins: adhere to the appc/CNI specification, designed for interoperability. * Kubenet plugin: implements basic `cbr0` using the `bridge` and `host-local` CNI plugins @@ -30,10 +29,6 @@ Besides providing the [`NetworkPlugin` interface](https://github.com/kubernetes/ By default if no kubelet network plugin is specified, the `noop` plugin is used, which sets `net/bridge/bridge-nf-call-iptables=1` to ensure simple configurations (like docker with a bridge) work correctly with the iptables proxy. -### Exec - -Place plugins in `network-plugin-dir/plugin-name/plugin-name`, i.e. if you have a bridge plugin and `network-plugin-dir` is `/usr/lib/kubernetes`, you'd place the bridge plugin executable at `/usr/lib/kubernetes/bridge/bridge`. See [this comment](https://github.com/kubernetes/kubernetes/tree/{{page.version}}/pkg/kubelet/network/exec/exec.go) for more details. - ### CNI The CNI plugin is selected by passing Kubelet the `--network-plugin=cni` command-line option. Kubelet reads a file from `--cni-conf-dir` (default `/etc/cni/net.d`) and uses the CNI configuration from that file to set up each pod's network. The CNI configuration file must match the [CNI specification](https://github.com/containernetworking/cni/blob/master/SPEC.md#network-configuration), and any required CNI plugins referenced by the configuration must be present in `--cni-bin-dir` (default `/opt/cni/bin`). @@ -73,7 +68,6 @@ This option is provided to the network-plugin; currently **only kubenet supports ## Usage Summary -* `--network-plugin=exec` specifies that we use the `exec` plugin, with executables located in `--network-plugin-dir`. * `--network-plugin=cni` specifies that we use the `cni` network plugin with actual CNI plugin binaries located in `--cni-bin-dir` (default `/opt/cni/bin`) and CNI plugin configuration located in `--cni-conf-dir` (default `/etc/cni/net.d`). * `--network-plugin=kubenet` specifies that we use the `kubenet` network plugin with CNI `bridge` and `host-local` plugins placed in `/opt/cni/bin` or `network-plugin-dir`. * `--network-plugin-mtu=9001` specifies the MTU to use, currently only used by the `kubenet` network plugin. From 068c797f47f346a578148964926bba32a884f4fa Mon Sep 17 00:00:00 2001 From: caiyixiang Date: Tue, 10 Jan 2017 09:20:38 +0800 Subject: [PATCH 015/132] Update ingress.md --- docs/user-guide/ingress.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/ingress.md b/docs/user-guide/ingress.md index b9c371e2a1..788cabaa4b 100644 --- a/docs/user-guide/ingress.md +++ b/docs/user-guide/ingress.md @@ -69,7 +69,7 @@ spec: *POSTing this to the API server will have no effect if you have not configured an [Ingress controller](#ingress-controllers).* -__Lines 1-4__: As with all other Kubernetes config, an Ingress needs `apiVersion`, `kind`, and `metadata` fields. For general information about working with config files, see [here](/docs/user-guide/simple-yaml), [here](/docs/user-guide/configuring-containers), and [here](/docs/user-guide/working-with-resources). +__Lines 1-4__: As with all other Kubernetes config, an Ingress needs `apiVersion`, `kind`, and `metadata` fields. For general information about working with config files, see [here](docs/user-guide/deploying-applications), [here](/docs/user-guide/configuring-containers), and [here](/docs/user-guide/working-with-resources). __Lines 5-7__: Ingress [spec](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/docs/devel/api-conventions.md#spec-and-status) has all the information needed to configure a loadbalancer or proxy server. Most importantly, it contains a list of rules matched against all incoming requests. Currently the Ingress resource only supports http rules. @@ -107,7 +107,7 @@ Where `107.178.254.228` is the IP allocated by the Ingress controller to satisfy ### Simple fanout -As described previously, pods within kubernetes have IPs only visible on the cluster network, so we need something at the edge accepting ingress traffic and proxying it to the right endpoints. This component is usually a highly available loadbalancer/s. An Ingress allows you to keep the number of loadbalancers down to a minimum, for example, a setup like: +As described previously, pods within kubernetes have IPs only visible on the cluster network, so we need something at the edge accepting ingress traffic and proxying it to the right endpoints. This component is usually a highly available loadbalancers. An Ingress allows you to keep the number of loadbalancers down to a minimum, for example, a setup like: ```shell foo.bar.com -> 178.91.123.132 -> / foo s1:80 From 40356713c40a95c5abe728a83ecd794ae7bb0817 Mon Sep 17 00:00:00 2001 From: Patrick Clinger Date: Wed, 4 Jan 2017 14:56:49 -0800 Subject: [PATCH 016/132] Fix references to restartPolicy spec location This document currently indicates that restartPolicy is part of the v1.Container spec, however according to the definitions it is actually in the v1.PodSpec. References: http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_pod http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_container Changed references to be `.spec.template.spec.restartPolicy` --- docs/user-guide/jobs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/user-guide/jobs.md b/docs/user-guide/jobs.md index d8476d73d5..cc2f9d38c3 100644 --- a/docs/user-guide/jobs.md +++ b/docs/user-guide/jobs.md @@ -172,20 +172,20 @@ parallelism, for a variety or reasons: A Container in a Pod may fail for a number of reasons, such as because the process in it exited with a non-zero exit code, or the Container was killed for exceeding a memory limit, etc. If this -happens, and the `.spec.template.containers[].restartPolicy = "OnFailure"`, then the Pod stays +happens, and the `.spec.template.spec.restartPolicy = "OnFailure"`, then the Pod stays on the node, but the Container is re-run. Therefore, your program needs to handle the case when it is -restarted locally, or else specify `.spec.template.containers[].restartPolicy = "Never"`. +restarted locally, or else specify `.spec.template.spec.restartPolicy = "Never"`. See [pods-states](/docs/user-guide/pod-states) for more information on `restartPolicy`. An entire Pod can also fail, for a number of reasons, such as when the pod is kicked off the node (node is upgraded, rebooted, deleted, etc.), or if a container of the Pod fails and the -`.spec.template.containers[].restartPolicy = "Never"`. When a Pod fails, then the Job controller +`.spec.template.spec.restartPolicy = "Never"`. When a Pod fails, then the Job controller starts a new Pod. Therefore, your program needs to handle the case when it is restarted in a new pod. In particular, it needs to handle temporary files, locks, incomplete output and the like caused by previous runs. Note that even if you specify `.spec.parallelism = 1` and `.spec.completions = 1` and -`.spec.template.containers[].restartPolicy = "Never"`, the same program may +`.spec.template.spec.restartPolicy = "Never"`, the same program may sometimes be started twice. If you do specify `.spec.parallelism` and `.spec.completions` both greater than 1, then there may be From a96ae0e9856899b69ced461dc53d7bc367fb6f85 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Tue, 10 Jan 2017 16:29:46 -0800 Subject: [PATCH 017/132] fix broken link [API reference docs] link was updated to point to (/docs/federation/api-reference/) --- docs/user-guide/federation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/federation/index.md b/docs/user-guide/federation/index.md index 2954984313..719a3e8174 100644 --- a/docs/user-guide/federation/index.md +++ b/docs/user-guide/federation/index.md @@ -45,7 +45,7 @@ The following guides explain some of the resources in detail: * [Services](/docs/user-guide/federation/federated-services/) -[API reference docs](/federation/docs/api-reference/readme/) lists all the +[API reference docs](/docs/federation/api-reference/) lists all the resources supported by federation apiserver. ## Cascading deletion From 8048e7d2fcb6f40236a081d7b7750e32dcca56f9 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Wed, 11 Jan 2017 09:24:01 -0800 Subject: [PATCH 018/132] Fix link. --- docs/user-guide/environment-guide/index.md | 184 +++++++++++---------- 1 file changed, 94 insertions(+), 90 deletions(-) diff --git a/docs/user-guide/environment-guide/index.md b/docs/user-guide/environment-guide/index.md index 64f1e4a019..417cf5be33 100644 --- a/docs/user-guide/environment-guide/index.md +++ b/docs/user-guide/environment-guide/index.md @@ -4,93 +4,97 @@ assignees: title: Using Environment Variables --- -This example demonstrates running pods, replication controllers, and -services. It shows two types of pods: frontend and backend, with -services on top of both. Accessing the frontend pod will return -environment information about itself, and a backend pod that it has -accessed through the service. The goal is to illuminate the -environment metadata available to running containers inside the -Kubernetes cluster. The documentation for the Kubernetes environment -is [here](/docs/user-guide/container-environment). - -![Diagram](/images/docs/diagram.png) - -## Prerequisites - -This example assumes that you have a Kubernetes cluster installed and -running, and that you have installed the `kubectl` command line tool -somewhere in your path. Please see the [getting -started](/docs/getting-started-guides/) for installation instructions -for your platform. - -## Optional: Build your own containers - -The code for the containers is under -[containers/](/docs/user-guide/containers/) - -## Get everything running - -```shell -kubectl create -f ./backend-rc.yaml -kubectl create -f ./backend-srv.yaml -kubectl create -f ./show-rc.yaml -kubectl create -f ./show-srv.yaml -``` - -## Query the service - -Use `kubectl describe service show-srv` to determine the public IP of -your service. - -> Note: If your platform does not support external load balancers, - you'll need to open the proper port and direct traffic to the - internal IP shown for the frontend service with the above command - -Run `curl :80` to query the service. You should get -something like this back: - -```shell -Pod Name: show-rc-xxu6i -Pod Namespace: default -USER_VAR: important information - -Kubernetes environment variables -BACKEND_SRV_SERVICE_HOST = 10.147.252.185 -BACKEND_SRV_SERVICE_PORT = 5000 -KUBERNETES_RO_SERVICE_HOST = 10.147.240.1 -KUBERNETES_RO_SERVICE_PORT = 80 -KUBERNETES_SERVICE_HOST = 10.147.240.2 -KUBERNETES_SERVICE_PORT = 443 -KUBE_DNS_SERVICE_HOST = 10.147.240.10 -KUBE_DNS_SERVICE_PORT = 53 - -Found backend ip: 10.147.252.185 port: 5000 -Response from backend -Backend Container -Backend Pod Name: backend-rc-6qiya -Backend Namespace: default -``` - -First the frontend pod's information is printed. The pod name and -[namespace](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/namespaces.md) are retrieved from the -[Downward API](/docs/user-guide/downward-api). Next, `USER_VAR` is the name of -an environment variable set in the [pod -definition](/docs/user-guide/environment-guide/show-rc.yaml). Then, the dynamic Kubernetes environment -variables are scanned and printed. These are used to find the backend -service, named `backend-srv`. Finally, the frontend pod queries the -backend service and prints the information returned. Again the backend -pod returns its own pod name and namespace. - -Try running the `curl` command a few times, and notice what -changes. Ex: `watch -n 1 curl -s ` Firstly, the frontend service -is directing your request to different frontend pods each time. The -frontend pods are always contacting the backend through the backend -service. This results in a different backend pod servicing each -request as well. - -## Cleanup - -```shell -kubectl delete rc,service -l type=show-type -kubectl delete rc,service -l type=backend-type -``` +This example demonstrates running pods, replication controllers, and +services. It shows two types of pods: frontend and backend, with +services on top of both. Accessing the frontend pod will return +environment information about itself, and a backend pod that it has +accessed through the service. The goal is to illuminate the +environment metadata available to running containers inside the +Kubernetes cluster. The documentation for the Kubernetes environment +is [here](/docs/user-guide/container-environment). + +![Diagram](/images/docs/diagram.png) + +## Prerequisites + +This example assumes that you have a Kubernetes cluster installed and +running, and that you have installed the `kubectl` command line tool +somewhere in your path. Please see the [getting +started](/docs/getting-started-guides/) for installation instructions +for your platform. + +## Optional: Build your own containers + +These are the configuration files for the containers: + +* [backend-rc.yaml](https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/user-guide/environment-guide/backend-rc.yaml) +* [backend-srv.yaml](https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/user-guide/environment-guide/backend-srv.yaml) +* [show-rc.yaml](https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/user-guide/environment-guide/show-rc.yaml) +* [show-srv.yaml](https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/user-guide/environment-guide/show-srv.yaml) + +## Get everything running + +```shell +kubectl create -f ./backend-rc.yaml +kubectl create -f ./backend-srv.yaml +kubectl create -f ./show-rc.yaml +kubectl create -f ./show-srv.yaml +``` + +## Query the service + +Use `kubectl describe service show-srv` to determine the public IP of +your service. + +> Note: If your platform does not support external load balancers, + you'll need to open the proper port and direct traffic to the + internal IP shown for the frontend service with the above command + +Run `curl :80` to query the service. You should get +something like this back: + +```shell +Pod Name: show-rc-xxu6i +Pod Namespace: default +USER_VAR: important information + +Kubernetes environment variables +BACKEND_SRV_SERVICE_HOST = 10.147.252.185 +BACKEND_SRV_SERVICE_PORT = 5000 +KUBERNETES_RO_SERVICE_HOST = 10.147.240.1 +KUBERNETES_RO_SERVICE_PORT = 80 +KUBERNETES_SERVICE_HOST = 10.147.240.2 +KUBERNETES_SERVICE_PORT = 443 +KUBE_DNS_SERVICE_HOST = 10.147.240.10 +KUBE_DNS_SERVICE_PORT = 53 + +Found backend ip: 10.147.252.185 port: 5000 +Response from backend +Backend Container +Backend Pod Name: backend-rc-6qiya +Backend Namespace: default +``` + +First the frontend pod's information is printed. The pod name and +[namespace](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/namespaces.md) are retrieved from the +[Downward API](/docs/user-guide/downward-api). Next, `USER_VAR` is the name of +an environment variable set in the [pod +definition](/docs/user-guide/environment-guide/show-rc.yaml). Then, the dynamic Kubernetes environment +variables are scanned and printed. These are used to find the backend +service, named `backend-srv`. Finally, the frontend pod queries the +backend service and prints the information returned. Again the backend +pod returns its own pod name and namespace. + +Try running the `curl` command a few times, and notice what +changes. Ex: `watch -n 1 curl -s ` Firstly, the frontend service +is directing your request to different frontend pods each time. The +frontend pods are always contacting the backend through the backend +service. This results in a different backend pod servicing each +request as well. + +## Cleanup + +```shell +kubectl delete rc,service -l type=show-type +kubectl delete rc,service -l type=backend-type +``` From 54519b72f93edfa1d46645a1cdebf9f284e22ccc Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Wed, 11 Jan 2017 14:31:32 -0800 Subject: [PATCH 019/132] Fix code and fix link to code. --- docs/tutorials/stateless-application/hello-minikube.md | 2 +- docs/tutorials/stateless-application/server.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index 54697ef9c1..42853a62cc 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -99,7 +99,7 @@ kubectl cluster-info The next step is to write the application. Save this code in a folder named `hellonode` with the filename `server.js`: -{% include code.html language="js" file="server.js" ghlink="docs/tutorials/stateless-application/server.js" %} +{% include code.html language="js" file="server.js" ghlink="/docs/tutorials/stateless-application/server.js" %} Run your application: diff --git a/docs/tutorials/stateless-application/server.js b/docs/tutorials/stateless-application/server.js index 4a31299886..76345a17d8 100644 --- a/docs/tutorials/stateless-application/server.js +++ b/docs/tutorials/stateless-application/server.js @@ -1,3 +1,5 @@ +var http = require('http'); + var handleRequest = function(request, response) { console.log('Received request for URL: ' + request.url); response.writeHead(200); From eb798593f715dd67b238103dad8c20816fa88fba Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Wed, 11 Jan 2017 15:54:47 -0800 Subject: [PATCH 020/132] Fix outdated links re: issue #1843 Updated the following links in Terminology [Kubernetes networking model] [OVS] [Service] --- docs/user-guide/ingress.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/ingress.md b/docs/user-guide/ingress.md index b9c371e2a1..cc0bff8391 100644 --- a/docs/user-guide/ingress.md +++ b/docs/user-guide/ingress.md @@ -14,8 +14,8 @@ Throughout this doc you will see a few terms that are sometimes used interchange * Node: A single virtual or physical machine in a Kubernetes cluster. * Cluster: A group of nodes firewalled from the internet, that are the primary compute resources managed by Kubernetes. * Edge router: A router that enforces the firewall policy for your cluster. This could be a gateway managed by a cloudprovider or a physical piece of hardware. -* Cluster network: A set of links, logical or physical, that facilitate communication within a cluster according to the [Kubernetes networking model](https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/admin/networking.md). Examples of a Cluster network include Overlays such as [flannel](https://github.com/coreos/flannel#flannel) or SDNs such as [OVS](https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/admin/ovs-networking.md). -* Service: A Kubernetes [Service](https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/user-guide/services.md) that identifies a set of pods using label selectors. Unless mentioned otherwise, Services are assumed to have virtual IPs only routable within the cluster network. +* Cluster network: A set of links, logical or physical, that facilitate communication within a cluster according to the [Kubernetes networking model](/docs/admin/networking/). Examples of a Cluster network include Overlays such as [flannel](https://github.com/coreos/flannel#flannel) or SDNs such as [OVS](/docs/admin/ovs-networking/). +* Service: A Kubernetes [Service](/docs/user-guide/services/) that identifies a set of pods using label selectors. Unless mentioned otherwise, Services are assumed to have virtual IPs only routable within the cluster network. ## What is Ingress? From 22fb75ff4d4a0f364cba7dd92a6c36f862e87e8f Mon Sep 17 00:00:00 2001 From: Ben Hall Date: Thu, 12 Jan 2017 09:04:54 +0000 Subject: [PATCH 021/132] Remove some padding around Katacoda to give it a little more space. --- .../kubernetes-basics/cluster-interactive.html | 2 +- .../kubernetes-basics/deploy-interactive.html | 2 +- .../kubernetes-basics/explore-interactive.html | 2 +- .../kubernetes-basics/expose-interactive.html | 2 +- .../tutorials/kubernetes-basics/public/css/styles.css | 11 ++++++++++- .../kubernetes-basics/scale-interactive.html | 2 +- .../kubernetes-basics/update-interactive.html | 2 +- 7 files changed, 16 insertions(+), 7 deletions(-) diff --git a/docs/tutorials/kubernetes-basics/cluster-interactive.html b/docs/tutorials/kubernetes-basics/cluster-interactive.html index da0df10297..c1125b90c0 100644 --- a/docs/tutorials/kubernetes-basics/cluster-interactive.html +++ b/docs/tutorials/kubernetes-basics/cluster-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Creating a Cluster
-
+
diff --git a/docs/tutorials/kubernetes-basics/deploy-interactive.html b/docs/tutorials/kubernetes-basics/deploy-interactive.html index 5fe4990723..42796283a0 100644 --- a/docs/tutorials/kubernetes-basics/deploy-interactive.html +++ b/docs/tutorials/kubernetes-basics/deploy-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Deploying an App
-
+

diff --git a/docs/tutorials/kubernetes-basics/explore-interactive.html b/docs/tutorials/kubernetes-basics/explore-interactive.html index ff007f80d1..6b284c3ad5 100644 --- a/docs/tutorials/kubernetes-basics/explore-interactive.html +++ b/docs/tutorials/kubernetes-basics/explore-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Exploring Your App
-
+

diff --git a/docs/tutorials/kubernetes-basics/expose-interactive.html b/docs/tutorials/kubernetes-basics/expose-interactive.html index 26b30492a6..00c7cb9e02 100644 --- a/docs/tutorials/kubernetes-basics/expose-interactive.html +++ b/docs/tutorials/kubernetes-basics/expose-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Exposing Your App
-
+
diff --git a/docs/tutorials/kubernetes-basics/public/css/styles.css b/docs/tutorials/kubernetes-basics/public/css/styles.css index 654544f1dd..33415378b9 100644 --- a/docs/tutorials/kubernetes-basics/public/css/styles.css +++ b/docs/tutorials/kubernetes-basics/public/css/styles.css @@ -9883,12 +9883,21 @@ p a:hover background: #f8f8f8; } +.content.katacoda-content { + padding: 0; + max-width: 100%; +} + +.content.katacoda-content .btn-success { + margin-bottom: 50px; +} + .katacoda { display: table; width: 100%; - margin: 50px 0; + margin: 0 0 50px 0; } @media screen and (max-width: 762px) { diff --git a/docs/tutorials/kubernetes-basics/scale-interactive.html b/docs/tutorials/kubernetes-basics/scale-interactive.html index dba3f3b1df..e4b1449aa3 100644 --- a/docs/tutorials/kubernetes-basics/scale-interactive.html +++ b/docs/tutorials/kubernetes-basics/scale-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Scaling Your App
-
+
diff --git a/docs/tutorials/kubernetes-basics/update-interactive.html b/docs/tutorials/kubernetes-basics/update-interactive.html index e011269f1d..5a3c1cb0b3 100644 --- a/docs/tutorials/kubernetes-basics/update-interactive.html +++ b/docs/tutorials/kubernetes-basics/update-interactive.html @@ -13,7 +13,7 @@ title: Interactive Tutorial - Updating Your App
-
+
From 809c3cf9b546cd8284f3c002c45c244cc783ba83 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Thu, 12 Jan 2017 16:29:19 -0800 Subject: [PATCH 022/132] Redirect User Guide topic: Working with Containers in Production. --- _data/guides.yml | 1 - docs/tasks/index.md | 3 + docs/user-guide/production-pods.md | 245 ----------------------------- 3 files changed, 3 insertions(+), 246 deletions(-) delete mode 100644 docs/user-guide/production-pods.md diff --git a/_data/guides.yml b/_data/guides.yml index 9d08a88367..c1bdd99a4e 100644 --- a/_data/guides.yml +++ b/_data/guides.yml @@ -71,7 +71,6 @@ toc: - docs/user-guide/pods/init-container.md - docs/user-guide/configuring-containers.md - docs/user-guide/pod-templates.md - - docs/user-guide/production-pods.md - docs/user-guide/containers.md - docs/user-guide/environment-guide/index.md - docs/user-guide/compute-resources.md diff --git a/docs/tasks/index.md b/docs/tasks/index.md index 2482a13677..92521ad0dd 100644 --- a/docs/tasks/index.md +++ b/docs/tasks/index.md @@ -1,5 +1,8 @@ --- title: Tasks +redirect_from: +- "/docs/user-guide/production-pods/" +- "/docs/user-guide/production-pods.html" --- This section of the Kubernetes documentation contains pages that diff --git a/docs/user-guide/production-pods.md b/docs/user-guide/production-pods.md deleted file mode 100644 index 586838f852..0000000000 --- a/docs/user-guide/production-pods.md +++ /dev/null @@ -1,245 +0,0 @@ ---- -assignees: -- bgrant0607 -- janetkuo -- thockin -title: Working with Containers in Production ---- - -You've seen [how to configure and deploy pods and containers](/docs/user-guide/configuring-containers), using some of the most common configuration parameters. This section dives into additional features that are especially useful for running applications in production. - -* TOC -{:toc} - -## Using a Volume for storage - -The container file system only lives as long as the container does, so when a container crashes and restarts, changes to the filesystem will be lost and the container will restart from a clean slate. For more consistent storage that lasts for the life of a Pod, you need a [*volume*](/docs/user-guide/volumes). This is especially important to stateful applications, such as key-value stores and databases. - -For example, [Redis](http://redis.io/) is a key-value cache and store, which we use in the [guestbook](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/guestbook/) and other examples. We can add a volume to it to store data as follows: - -{% include code.html language="yaml" file="redis-deployment.yaml" ghlink="/docs/user-guide/redis-deployment.yaml" %} - -`emptyDir` volumes live for the lifespan of the [pod](/docs/user-guide/pods), which is longer than the lifespan of any one container, so if the container fails and is restarted, our storage will live on. - -In addition to the local disk storage provided by `emptyDir`, Kubernetes supports many different network-attached storage solutions, including PD on GCE and EBS on EC2, which are preferred for critical data, and will handle details such as mounting and unmounting the devices on the nodes. See [the volumes doc](/docs/user-guide/volumes) for more details. - -## Distributing credentials - -Many applications need credentials, such as passwords, OAuth tokens, and TLS keys, to authenticate with other applications, databases, and services. Storing these credentials in container images or environment variables is less than ideal, since the credentials can then be copied by anyone with access to the image, pod/container specification, host file system, or host Docker daemon. - -Kubernetes provides a mechanism, called [*secrets*](/docs/user-guide/secrets), that facilitates delivery of sensitive credentials to applications. A `Secret` is a simple resource containing a map of data. For instance, you can create a simple secret with a username and password as follows: - -```shell -$ kubectl create secret generic mysecret --from-literal=username="admin",password="1234" -secret "mysecret" created -``` - -This is equivalent to `kubectl create -f`: - -```yaml -apiVersion: v1 -kind: Secret -metadata: - name: mysecret -type: Opaque -data: - username: YWRtaW4= - password: MTIzNA== -``` - -As with other resources, the created secret can be viewed with `get`: - -```shell -$ kubectl get secrets -NAME TYPE DATA AGE -default-token-zirbw kubernetes.io/service-account-token 3 3h -mysecret Opaque 2 2m -``` - -To use the secret, you need to reference it in a pod or pod template. The `secret` volume source enables you to mount it as an in-memory directory into your containers. - -{% include code.html language="yaml" file="redis-secret-deployment.yaml" ghlink="/docs/user-guide/redis-secret-deployment.yaml" %} - -For more details, see the [secrets document](/docs/user-guide/secrets), [example](/docs/user-guide/secrets/) and [design doc](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/secrets.md). - -## Authenticating with a private image registry - -Secrets can also be used to pass [image registry credentials](/docs/user-guide/images/#using-a-private-registry). - -The easiest way to create a secret for Docker registry is: - -```shell -$ kubectl create secret docker-registry myregistrykey --docker-username=janedoe --docker-password=●●●●●●●●●●● --docker-email=jdoe@example.com -secret "myregistrykey" created -``` - -Alternatively, you can do the equivalent with the following steps. First, create a `.docker/config.json`, such as by running `docker login `. -Then put the resulting `.docker/config.json` file into a [secret resource](secrets.md). For example: - -```shell -$ docker login -Username: janedoe -Password: ●●●●●●●●●●● -Email: jdoe@example.com -WARNING: login credentials saved in /Users/jdoe/.docker/config.json. -Login Succeeded - -$ echo $(cat ~/.docker/config.json) -{ "https://index.docker.io/v1/": { "auth": "ZmFrZXBhc3N3b3JkMTIK", "email": "jdoe@example.com" } } - -$ cat ~/.docker/config.json | base64 -eyAiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIjogeyAiYXV0aCI6ICJabUZyWlhCaGMzTjNiM0prTVRJSyIsICJlbWFpbCI6ICJqZG9lQGV4YW1wbGUuY29tIiB9IH0K - -$ cat > /tmp/image-pull-secret.yaml < Date: Thu, 5 Jan 2017 15:28:50 +0100 Subject: [PATCH 023/132] Refactor stackdriver logging page --- docs/user-guide/logging/overview.md | 56 ++++--- docs/user-guide/logging/stackdriver.md | 214 +++++++++++-------------- 2 files changed, 130 insertions(+), 140 deletions(-) diff --git a/docs/user-guide/logging/overview.md b/docs/user-guide/logging/overview.md index e1ac4885be..61c068a4d9 100644 --- a/docs/user-guide/logging/overview.md +++ b/docs/user-guide/logging/overview.md @@ -7,26 +7,26 @@ title: Logging Overview Application and systems logs can help you understand what is happening inside your cluster. The logs are particularly useful for debugging problems and monitoring cluster activity. Most modern applications have some kind of logging mechanism; as such, most container engines are likewise designed to support some kind of logging. The easiest and most embraced logging method for containerized applications is to write to the standard output and standard error streams. -However, the native functionality provided by a container engine or runtime is usually not enough for a complete logging solution. For example, if a container crashes, a pod is evicted, or a node dies, you'll usually still want to access your application's logs. As such, logs should have a separate storage and lifecycle independent of nodes, pods, or containers; this concept is called __cluster-level-logging__. Cluster-level logging requires a separate back-end to store, analyze, and query logs. Kubernetes provides no native storage solution for logs data, but you can integrate many existing logging solutions into your Kubernetes cluster. +However, the native functionality provided by a container engine or runtime is usually not enough for a complete logging solution. For example, if a container crashes, a pod is evicted, or a node dies, you'll usually still want to access your application's logs. As such, logs should have a separate storage and lifecycle independent of nodes, pods, or containers. This concept is called _cluster-level-logging_. Cluster-level logging requires a separate backend to store, analyze, and query logs. Kubernetes provides no native storage solution for log data, but you can integrate many existing logging solutions into your Kubernetes cluster. -In this document, you can find: +This document includes: * A basic demonstration of logging in Kubernetes using the standard output stream * A detailed description of the node logging architecture in Kubernetes * Guidance for implementing cluster-level logging in Kubernetes -The guidance for cluster-level logging assumes that a logging back-end is present inside or outside of your cluster. If you're not interested in having cluster-level logging, you might still find the description how logs are stored and handled on the node to be useful. +The guidance for cluster-level logging assumes that a logging backend is present inside or outside of your cluster. If you're not interested in having cluster-level logging, you might still find the description of how logs are stored and handled on the node to be useful. ## Basic logging in Kubernetes In this section, you can see an example of basic logging in Kubernetes that outputs data to the standard output stream. This demonstration uses a [pod specification](/docs/user-guide/logging/counter-pod.yaml) with a container that writes some text to standard output once per second. -{% include code.html language="yaml" file="counter-pod.yaml" %} +{% include code.html language="yaml" file="counter-pod.yaml" ghlink="/docs/user-guide/counter-pod.yaml" %} To run this pod, use the following command: ```shell -$ kubectl create -f counter-pod.yaml +$ kubectl create -f http://k8s.io/docs/user-guide/counter-pod.yaml pod "counter" created ``` @@ -43,17 +43,17 @@ $ kubectl logs counter ... ``` -You can use `kubectl logs` to retrieve logs from a previous instantiation of a container with `--previous` flag, in case the container has crashed. If your pod has multiple containers, you should specify which container's logs you want to access by appending a container name to the command. See the [`kubectl logs` documentation](/docs/user-guide/kubectl/kubectl_logs) for more details. +You can use `kubectl logs` to retrieve logs from a previous instantiation of a container with `--previous` flag, in case the container has crashed. If your pod has multiple containers, you should specify which container's logs you want to access by appending a container name to the command. See the [`kubectl logs` documentation](/docs/user-guide/kubectl/kubectl_logs/) for more details. ## Logging at the node level ![Node level logging](/images/docs/user-guide/logging/logging-node-level.png) -Everything a containerized application writes to `stdout` and `stderr` is handled and redirected somewhere by a container engine. For example, Docker container engine redirects those two streams to [a logging driver](https://docs.docker.com/engine/admin/logging/overview), which is configured in Kubernetes to write to a file in json format. +Everything a containerized application writes to `stdout` and `stderr` is handled and redirected somewhere by a container engine. For example, the Docker container engine redirects those two streams to [a logging driver](https://docs.docker.com/engine/admin/logging/overview), which is configured in Kubernetes to write to a file in json format. -**Note:** The Docker json logging driver treats each line as a separate message. When using the Docker logging driver, there is no direct support for multi-line messages. To do so, you'll need to handle these at the logging agent level or higher. +**Note:** The Docker json logging driver treats each line as a separate message. When using the Docker logging driver, there is no direct support for multi-line messages. You need to handle multi-line messages at the logging agent level or higher. -By default, if a container restarts, kubelet keeps one terminated container with its logs. If a pod is evicted from the node, all corresponding containers are also evicted, along with their logs. +By default, if a container restarts, the kubelet keeps one terminated container with its logs. If a pod is evicted from the node, all corresponding containers are also evicted, along with their logs. An important consideration in node-level logging is implementing log rotation, so that logs don't consume all available storage on the node. Kubernetes uses the [`logrotate`](http://www.linuxcommand.org/man_pages/logrotate8.html) tool to implement log rotation. @@ -61,31 +61,45 @@ Kubernetes performs log rotation daily, or if the log file grows beyond 10MB in The Kubernetes logging configuration differs depending on the node type. For example, you can find detailed information for GCI in the corresponding [configure helper](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/cluster/gce/gci/configure-helper.sh#L96). -When you run [`kubectl logs`](/docs/user-guide/kubectl/kubectl_logs), as in the basic logging example, the kubelet on the node handles the request and reads directly from the log file, returning the contents in the response. Note that `kubectl logs` **only returns the last rotation**; you must manually extract prior rotations, if desired. +When you run [`kubectl logs`](/docs/user-guide/kubectl/kubectl_logs), as in the basic logging example, the kubelet on the node handles the request and reads directly from the log file, returning the contents in the response. Note that `kubectl logs` **only returns the last rotation**; you must manually extract prior rotations, if desired and cluster-level logging is not enabled. -### System components logs +### System component logs -Kubernetes system components use a different logging mechanism than the application containers in pods. Components such as `kube-proxy` (among others) use the [glog](https://godoc.org/github.com/golang/glog) logging library. You can find the conventions for logging severity for those components in the [development docs on logging](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/docs/devel/logging.md). +There are two types of system components: those that run in a container and those +that do not run in a container. For example: -System components write directly to log files in the `/var/log` directory in the node's host filesystem. Like container logs, system component logs are rotated daily and based on size. However, system component logs have a higher size retention: by default, they store 100MB. +* The Kubernets scheduler and kube-proxy run in a container. +* The kubelet and container runtime, for example Docker, do not run in containers. + +On machines with systemd, the kubelet and container runtime write to journald. If +systemd is not present, they write to `.log` files in the `/var/log` directory. +System components inside containers always write to the `/var/log` directory, +bypassing the default logging mechanism. They use the [glog](https://godoc.org/github.com/golang/glog) +logging library. You can find the conventions for logging severity for those +components in the [development docs on logging](https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md). + +Similarly to the container logs, system component logs in the `/var/log` +directory are rotated daily and based on the log size. However, +system component logs have a higher size retention: by default, +they can store up to 100MB. ## Cluster-level logging architectures -While Kubernetes does not provide a native solution for cluster-level logging, there are several common approaches you can consider: +While Kubernetes does not provide a native solution for cluster-level logging, there are several common approaches you can consider. Here are some options: -* You can use a node-level logging agent that runs on every node. -* You can include a dedicated sidecar container for logging in an application pod. -* You can push logs directly to a back-end from within an application. +* Use a node-level logging agent that runs on every node. +* Include a dedicated sidecar container for logging in an application pod. +* Push logs directly to a backend from within an application. ### Using a node logging agent ![Using a node level logging agent](/images/docs/user-guide/logging/logging-with-node-agent.png) -You can implement cluster-level logging by including a _node-level logging agent_ on each node. The logging agent is a dedicated tool that exposes logs or pushes logs to a back-end. Commonly, the logging agent is a container that has access to a directory with log files from all of the application containers on that node. +You can implement cluster-level logging by including a _node-level logging agent_ on each node. The logging agent is a dedicated tool that exposes logs or pushes logs to a backend. Commonly, the logging agent is a container that has access to a directory with log files from all of the application containers on that node. Because the logging agent must run on every node, it's common to implement it as either a DaemonSet replica, a manifest pod, or a dedicated native process on the node. However the latter two approaches are deprecated and highly discouraged. -Using a node-level logging agent is the most common and encouraged approach for a Kubernetes cluster, since it creates only one agent per node and it doesn't require any changes to the applications running on the node. However, node-level logging _only works for applications' standard output and standard error_. +Using a node-level logging agent is the most common and encouraged approach for a Kubernetes cluster, because it creates only one agent per node, and it doesn't require any changes to the applications running on the node. However, node-level logging _only works for applications' standard output and standard error_. Kubernetes doesn't specify a logging agent, but two optional logging agents are packaged with the Kubernetes release: [Stackdriver Logging](/docs/user-guide/logging/stackdriver) for use with Google Cloud Platform, and [Elasticsearch](/docs/user-guide/logging/elasticsearch). You can find more information and instructions in the dedicated documents. Both use [fluentd](http://www.fluentd.org/) with custom configuration as an agent on the node. @@ -93,9 +107,9 @@ Kubernetes doesn't specify a logging agent, but two optional logging agents are ![Using a sidecar container with the logging agent](/images/docs/user-guide/logging/logging-with-sidecar.png) -You can implement cluster-level logging by including a dedicated logging agent _for each application_ on your cluster. You can include this logging agent as a "sidecar" container in the pod spec for each application; the sidecar container should contain only the logging agent. +You can implement cluster-level logging by including a dedicated logging agent for each application on your cluster. You can include this logging agent as a _sidecar container_ in the pod spec for each application; the sidecar container should contain only the logging agent. -The concrete implementation of the logging agent, the interface between agent and the application, and the interface between the logging agent and the logs back-end are completely up to a you. For an example implementation, see the [fluentd sidecar container](https://github.com/kubernetes/contrib/tree/b70447aa59ea14468f4cd349760e45b6a0a9b15d/logging/fluentd-sidecar-gcp) for the Stackdriver logging backend. +The concrete implementation of the logging agent, the interface between agent and the application, and the interface between the logging agent and the logs backend are completely up to a you. For an example implementation, see the [fluentd sidecar container](https://github.com/kubernetes/contrib/tree/b70447aa59ea14468f4cd349760e45b6a0a9b15d/logging/fluentd-sidecar-gcp) for the Stackdriver logging backend. **Note:** Using a sidecar container for logging may lead to significant resource consumption. diff --git a/docs/user-guide/logging/stackdriver.md b/docs/user-guide/logging/stackdriver.md index 1648d651ec..eb3380ca5c 100644 --- a/docs/user-guide/logging/stackdriver.md +++ b/docs/user-guide/logging/stackdriver.md @@ -5,44 +5,42 @@ assignees: title: Logging with Stackdriver Logging --- -Before reading this page, it's recommended to familiarize yourself with the [overview of logging in Kubernetes](/docs/user-guide/logging/overview). +Before reading this page, it's highly recommended to familiarize yourself with the [overview of logging in Kubernetes](/docs/user-guide/logging/overview). -This article assumes that you have created a Kubernetes cluster with cluster-level logging support for sending logs to Stackdriver Logging. You can do this either by selecting "Enable Stackdriver Logging" checkbox in create cluster dialogue in [GKE](https://cloud.google.com/container-engine/) or by setting flag `KUBE_LOGGING_DESTINATION` to `gcp` when manually starting cluster using `kube-up.sh`. +This article assumes that you have created a Kubernetes cluster with cluster-level logging support for sending logs to Stackdriver Logging. You can do this either by selecting the **Enable Stackdriver Logging** checkbox in the create cluster dialogue in [GKE](https://cloud.google.com/container-engine/), or by setting the `KUBE_LOGGING_DESTINATION` flag to `gcp` when manually starting a cluster using `kube-up.sh`. + +The following guide describes gathering a container's standard output and standard error. To gather logs written by an application to a file, you can use [a sidecar approach](https://github.com/kubernetes/contrib/blob/master/logging/fluentd-sidecar-gcp/README.md). ## Overview -After creation, your cluster has a collection of system pods running in the `kube-system` namespace that support monitoring, logging, and DNS resolution for Kuberentes service names. You can see these system pods by running the following command: +After creation, you can discover logging agent pods in the `kube-system` namespace, +one per node, by running the following command: ```shell $ kubectl get pods --namespace=kube-system -NAME READY REASON RESTARTS AGE -fluentd-cloud-logging-kubernetes-node-0f64 1/1 Running 0 32m -fluentd-cloud-logging-kubernetes-node-27gf 1/1 Running 0 32m -fluentd-cloud-logging-kubernetes-node-pk22 1/1 Running 0 31m -fluentd-cloud-logging-kubernetes-node-20ej 1/1 Running 0 31m -kube-dns-v3-pk22 3/3 Running 0 32m -monitoring-heapster-v1-20ej 0/1 Running 9 32m +NAME READY STATUS RESTARTS AGE +... +fluentd-gcp-v1.30-50gnc 1/1 Running 0 5d +fluentd-gcp-v1.30-v255c 1/1 Running 0 5d +fluentd-gcp-v1.30-f02l5 1/1 Running 0 5d +... ``` -Here is the same information in a picture which shows how the pods might be placed on specific nodes. +To understand how logging with Stackdriver works, consider the following +synthetic log generator pod specification [counter-pod.yaml](/docs/user-guide/logging/counter-pod.yaml): -![image](/images/blog-logging/diagrams/cloud-logging.png) +{% include code.html language="yaml" file="counter-pod.yaml" ghlink="/docs/user-guide/counter-pod.yaml" %} -This diagram shows four nodes created on a Google Compute Engine cluster with the name of each VM node on a purple background. The internal and public IPs of each node are shown on gray boxes and the pods running in each node are shown in green boxes. Each pod box shows the name of the pod and the namespace it runs in, the IP address of the pod and the images which are run as part of the pod's execution. Here we see that every node is running a fluentd-cloud-logging pod which is collecting the log output of the containers running on the same node and sending them to Stackdriver Logging. A pod which provides the -[cluster DNS service](/docs/admin/dns) runs on one of the nodes and a pod which provides monitoring support runs on another node. - -To help explain how cluster-level logging works, consider the following synthetic log generator pod specification [counter-pod.yaml](/docs/user-guide/logging/counter-pod.yaml): - -{% include code.html language="yaml" file="counter-pod.yaml" %} - -This pod specification has one container which runs a bash script when the container is born. This script simply writes out the value of a counter and the date once per second and runs indefinitely. Let's create the pod in the default namespace. +This pod specification has one container that runs a bash script +that writes out the value of a counter and the date once per +second, and runs indefinitely. Let's create this pod in the default namespace. ```shell -$ kubectl create -f examples/blog-logging/counter-pod.yaml - pods/counter +$ kubectl create -f counter-pod.yaml +pod "counter" created ``` -We can observe the running pod: +You can observe the running pod: ```shell $ kubectl get pods @@ -50,123 +48,101 @@ NAME READY STATUS RESTARTS AG counter 1/1 Running 0 5m ``` -This step may take a few minutes to download the ubuntu:14.04 image during which the pod status will be shown as `Pending`. - -One of the nodes is now running the counter pod: - -![image](/images/blog-logging/diagrams/27gf-counter.png) - -When the pod status changes to `Running` we can use the `kubectl logs` command to view the output of this counter pod. +For a short period of time you can observe the 'Pending' pod status, because the kubelet +has to download the container image first. When the pod status changes to `Running` +you can use the `kubectl logs` command to view the output of this counter pod. ```shell $ kubectl logs counter -0: Tue Jun 2 21:37:31 UTC 2015 -1: Tue Jun 2 21:37:32 UTC 2015 -2: Tue Jun 2 21:37:33 UTC 2015 -3: Tue Jun 2 21:37:34 UTC 2015 -4: Tue Jun 2 21:37:35 UTC 2015 -5: Tue Jun 2 21:37:36 UTC 2015 +0: Mon Jan 1 00:00:00 UTC 2001 +1: Mon Jan 1 00:00:01 UTC 2001 +2: Mon Jan 1 00:00:02 UTC 2001 ... ``` -This command fetches the log text from the Docker log file for the image that is running in this container. We can connect to the running container and observe the running counter bash script. - -```shell -$ kubectl exec -i counter bash -ps aux -USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND -root 1 0.0 0.0 17976 2888 ? Ss 00:02 0:00 bash -c for ((i = 0; ; i++)); do echo "$i: $(date)"; sleep 1; done -root 468 0.0 0.0 17968 2904 ? Ss 00:05 0:00 bash -root 479 0.0 0.0 4348 812 ? S 00:05 0:00 sleep 1 -root 480 0.0 0.0 15572 2212 ? R 00:05 0:00 ps aux -``` - -<<<<<<< HEAD:docs/getting-started-guides/logging.md -What happens if for any reason the image in this pod is killed off and then restarted by Kubernetes? Will we still see the log lines from the previous invocation of the container followed by the log lines for the started container? Or will we lose the log lines from the original container's execution and only see the log lines for the new container? Let's find out. First let's delete the currently running counter. -======= -If, for any reason, the image in this pod is killed off and then restarted by Kubernetes, or the pod was evicted from the node, logs for the container are lost. - -Try deleting the currently running counter container: ->>>>>>> 69304ab37e14fac33455b629442bdc3995d05ad2:docs/user-guide/logging/stackdriver.md +As described in the logging overview, this command fetches log entries +from the container log file. If the container is killed and then restarted by +Kubernetes, you can still access logs from the previous container. However, +if the pod is evicted from the node, log files are lost. Let's demonstrate this +by deleting the currently running counter container: ```shell $ kubectl delete pod counter pods/counter ``` -Now let's restart the counter. +and then recreating it: ```shell -$ kubectl create -f examples/blog-logging/counter-pod.yaml +$ kubectl create -f counter-pod.yaml pods/counter ``` -Let's wait for the container to restart and get the log lines again. +After some time, you can access logs from the counter pod again: ```shell $ kubectl logs counter -0: Tue Jun 2 21:51:40 UTC 2015 -1: Tue Jun 2 21:51:41 UTC 2015 -2: Tue Jun 2 21:51:42 UTC 2015 -3: Tue Jun 2 21:51:43 UTC 2015 -4: Tue Jun 2 21:51:44 UTC 2015 -5: Tue Jun 2 21:51:45 UTC 2015 -6: Tue Jun 2 21:51:46 UTC 2015 -7: Tue Jun 2 21:51:47 UTC 2015 -8: Tue Jun 2 21:51:48 UTC 2015 -``` - -As expected, the log lines from the first invocation of the container in this pod have been lost. However, you'll likely want to preserve all the log lines from each invocation of each container in the pod. Furthermore, even if the pod is restarted, you might still want to preserve all the log lines that were ever emitted by the containers in the pod. This is exactly the functionality provided by cluster-level logging in Kubernetes. - -## Viewing logs - -We can click on the Logs item under the Monitoring section of the Google Developer Console and select the logs for the counter container, which will be called kubernetes.counter_default_count. This identifies the name of the pod (counter), the namespace (default) and the name of the container (count) for which the log collection occurred. Using this name we can select just the logs for our counter container from the drop down menu: - -![Cloud Logging Console](/images/docs/cloud-logging-console.png) - -When we view the logs in the Developer Console we observe the logs for both invocations of the container. - -![Both Logs](/images/docs/all-lines.png) - -Note the first container counted to 108 and then it was terminated. When the next container image restarted the counting process resumed from 0. Similarly if we deleted the pod and restarted it we would capture the logs for all instances of the containers in the pod whenever the pod was running. - - Logs ingested into Stackdriver Logging may be exported to various other destinations including [Google Cloud Storage](https://cloud.google.com/storage/) buckets and [BigQuery](https://cloud.google.com/bigquery/). Use the Exports tab in the Cloud Logging console to specify where logs should be streamed to. You can also follow this link to the - [settings tab](https://pantheon.corp.google.com/project/_/logs/settings). - - We could query the ingested logs from BigQuery using the SQL query which reports the counter log lines showing the newest lines first: - -```shell -SELECT metadata.timestamp, structPayload.log -FROM [mylogs.kubernetes_counter_default_count_20150611] -ORDER BY metadata.timestamp DESC -``` - -Here is some sample output: - -![BigQuery](/images/docs/bigquery-logging.png) - -We could also fetch the logs from Google Cloud Storage buckets to our desktop or laptop and then search them locally. The following command fetches logs for the counter pod running in a cluster which is itself in a Compute Engine project called `myproject`. Only logs for the date 2015-06-11 are fetched. - - -```shell -$ gsutil -m cp -r gs://myproject/kubernetes.counter_default_count/2015/06/11 . -``` - -Now we can run queries over the ingested logs. The example below uses the [jq](http://stedolan.github.io/jq/) program to extract just the log lines. - -```shell -$ cat 21\:00\:00_21\:59\:59_S0.json | jq '.structPayload.log' -"0: Thu Jun 11 21:39:38 UTC 2015\n" -"1: Thu Jun 11 21:39:39 UTC 2015\n" -"2: Thu Jun 11 21:39:40 UTC 2015\n" -"3: Thu Jun 11 21:39:41 UTC 2015\n" -"4: Thu Jun 11 21:39:42 UTC 2015\n" -"5: Thu Jun 11 21:39:43 UTC 2015\n" -"6: Thu Jun 11 21:39:44 UTC 2015\n" -"7: Thu Jun 11 21:39:45 UTC 2015\n" +0: Mon Jan 1 00:01:00 UTC 2001 +1: Mon Jan 1 00:01:01 UTC 2001 +2: Mon Jan 1 00:01:02 UTC 2001 ... ``` -This page has touched briefly on the underlying mechanisms that support gathering cluster-level logs on a Kubernetes deployment. The approach here only works for gathering the standard output and standard error output of the processes running in the pod's containers. To gather other logs that are stored in files one can use a sidecar container to gather the required files as described at the page [Collecting log files within containers with Fluentd](https://github.com/kubernetes/contrib/blob/master/logging/fluentd-sidecar-gcp/README.md) and sending them to the Stackdriver Logging service. +As expected, only recent log lines are present. However, for a real-world +application you will likely want to be able to access logs from all containers, +especially for the debug purposes. This is exactly when the previously enabled +Stackdriver Logging can help. -Some of the material in this section also appears in the blog article [Cluster-level Logging with Kubernetes](http://blog.kubernetes.io/2015/06/cluster-level-logging-with-kubernetes.html) +## Viewing logs + +Stackdriver Logging agent attaches metadata to each log entry, for you to use later +in queries to select only the messages you're interested in: for example, +the messages from a particular pod. + +The most important pieces of metadata are the resource type and log name. +The resource type of a container log is `container`, which is named +`GKE Containers` in the UI (even if the Kubernetes cluster is not on GKE). +The log name is the name of the container, so that if you have a pod with +two containers, named `container_1` and `container_2` in the spec, their logs +will have log names `container_1` and `container_2` respectively. + +System components have resource type `compute`, which is named +`GCE VM Instance` in the interface. Log names for system components are fixed. +For a GKE node, every log entry from a system component has one the following +log names: + +* docker +* kubelet +* kube-proxy + +You can learn more about viewing logs on [the dedicated Stackdriver page](https://cloud.google.com/logging/docs/view/logs_viewer). + +One of the possible ways to view logs is using the +[`gcloud logging`](https://cloud.google.com/logging/docs/api/gcloud-logging) +command line interface from the [Google Cloud SDK](https://cloud.google.com/sdk/). +It uses Stackdriver Logging [filtering syntax](https://cloud.google.com/logging/docs/view/advanced_filters) +to query specific logs. For example, you can run the following command: + +```shell +$ gcloud beta logging read 'logName="projects/$YOUR_PROJECT_ID/logs/count"' --format json | jq '.[].textPayload' +... +"2: Mon Jan 1 00:01:02 UTC 2001\n" +"1: Mon Jan 1 00:01:01 UTC 2001\n" +"0: Mon Jan 1 00:01:00 UTC 2001\n" +... +"2: Mon Jan 1 00:00:02 UTC 2001\n" +"1: Mon Jan 1 00:00:01 UTC 2001\n" +"0: Mon Jan 1 00:00:00 UTC 2001\n" +``` + +As you can see, it outputs messages for the count container from both +the first and second runs, despite the fact that the kubelet already deleted +the logs for the first container. + +### Exporting logs + +You can export logs to [Google Cloud Storage](https://cloud.google.com/storage/) +or to [BigQuery](https://cloud.google.com/bigquery/) to run further +analysis. Stackdriver Logging offers the concept of sinks, where you can +specify the destination of log entries. More information is available on +the Stackdriver [Exporting Logs page](https://cloud.google.com/logging/docs/export/configure_export_v2). From 69582c2d8cf044124c0c330f995e1cc0745070dd Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Fri, 13 Jan 2017 09:56:34 -0800 Subject: [PATCH 024/132] change ref docs url format from 1_5 to v1.5 --- _data/reference.yml | 6 +++--- .../node_modules/node-static/.package.json.un~ | Bin 565 -> 0 bytes .../node-static/lib/.node-static.js.un~ | Bin 1018 -> 0 bytes docs/api-reference/{1_5 => v1.5}/LICENSE | 0 docs/api-reference/{1_5 => v1.5}/README.md | 0 docs/api-reference/{1_5 => v1.5}/actions.js | 0 docs/api-reference/{1_5 => v1.5}/brodoc.js | 0 .../{1_5 => v1.5}/documents/_cluster.md | 0 .../{1_5 => v1.5}/documents/_config.md | 0 .../{1_5 => v1.5}/documents/_definitions.md | 0 .../_generated_apigroup_unversioned_concept.md | 0 ..._generated_apigroup_unversioned_definition.md | 0 ...generated_apigrouplist_unversioned_concept.md | 0 ...erated_apigrouplist_unversioned_definition.md | 0 ..._generated_apiresource_unversioned_concept.md | 0 ...nerated_apiresource_unversioned_definition.md | 0 ...erated_apiresourcelist_unversioned_concept.md | 0 ...ted_apiresourcelist_unversioned_definition.md | 0 .../_generated_apiversion_v1beta1_concept.md | 0 .../_generated_apiversion_v1beta1_definition.md | 0 ..._generated_apiversions_unversioned_concept.md | 0 ...nerated_apiversions_unversioned_definition.md | 0 .../_generated_attachedvolume_v1_concept.md | 0 .../_generated_attachedvolume_v1_definition.md | 0 .../documents/_generated_binding_v1_concept.md | 0 .../_generated_binding_v1_definition.md | 0 .../_generated_capabilities_v1_concept.md | 0 .../_generated_capabilities_v1_definition.md | 0 ...certificatesigningrequest_v1alpha1_concept.md | 0 ...tificatesigningrequest_v1alpha1_definition.md | 0 ...tesigningrequestcondition_v1alpha1_concept.md | 0 ...igningrequestcondition_v1alpha1_definition.md | 0 ...ificatesigningrequestlist_v1alpha1_concept.md | 0 ...catesigningrequestlist_v1alpha1_definition.md | 0 ...ificatesigningrequestspec_v1alpha1_concept.md | 0 ...catesigningrequestspec_v1alpha1_definition.md | 0 ...icatesigningrequeststatus_v1alpha1_concept.md | 0 ...tesigningrequeststatus_v1alpha1_definition.md | 0 .../_generated_clusterrole_v1alpha1_concept.md | 0 ..._generated_clusterrole_v1alpha1_definition.md | 0 ...erated_clusterrolebinding_v1alpha1_concept.md | 0 ...ted_clusterrolebinding_v1alpha1_definition.md | 0 ...ed_clusterrolebindinglist_v1alpha1_concept.md | 0 ...clusterrolebindinglist_v1alpha1_definition.md | 0 ...generated_clusterrolelist_v1alpha1_concept.md | 0 ...erated_clusterrolelist_v1alpha1_definition.md | 0 .../_generated_componentcondition_v1_concept.md | 0 ...generated_componentcondition_v1_definition.md | 0 .../_generated_componentstatus_v1_concept.md | 0 .../_generated_componentstatus_v1_definition.md | 0 .../_generated_componentstatuslist_v1_concept.md | 0 ...enerated_componentstatuslist_v1_definition.md | 0 .../documents/_generated_configmap_v1_concept.md | 0 .../_generated_configmap_v1_definition.md | 0 ..._generated_configmapkeyselector_v1_concept.md | 0 ...nerated_configmapkeyselector_v1_definition.md | 0 .../_generated_configmaplist_v1_concept.md | 0 .../_generated_configmaplist_v1_definition.md | 0 .../documents/_generated_container_v1_concept.md | 0 .../_generated_container_v1_definition.md | 0 .../_generated_containerimage_v1_concept.md | 0 .../_generated_containerimage_v1_definition.md | 0 .../_generated_containerport_v1_concept.md | 0 .../_generated_containerport_v1_definition.md | 0 .../_generated_containerstate_v1_concept.md | 0 .../_generated_containerstate_v1_definition.md | 0 ...generated_containerstaterunning_v1_concept.md | 0 ...erated_containerstaterunning_v1_definition.md | 0 ...erated_containerstateterminated_v1_concept.md | 0 ...ted_containerstateterminated_v1_definition.md | 0 ...generated_containerstatewaiting_v1_concept.md | 0 ...erated_containerstatewaiting_v1_definition.md | 0 .../_generated_containerstatus_v1_concept.md | 0 .../_generated_containerstatus_v1_definition.md | 0 ...rated_cputargetutilization_v1beta1_concept.md | 0 ...ed_cputargetutilization_v1beta1_definition.md | 0 .../_generated_cronjob_v2alpha1_concept.md | 0 .../_generated_cronjob_v2alpha1_definition.md | 0 .../_generated_cronjoblist_v2alpha1_concept.md | 0 ..._generated_cronjoblist_v2alpha1_definition.md | 0 .../_generated_cronjobspec_v2alpha1_concept.md | 0 ..._generated_cronjobspec_v2alpha1_definition.md | 0 .../_generated_cronjobstatus_v2alpha1_concept.md | 0 ...enerated_cronjobstatus_v2alpha1_definition.md | 0 ...ted_crossversionobjectreference_v1_concept.md | 0 ..._crossversionobjectreference_v1_definition.md | 0 .../_generated_daemonendpoint_v1_concept.md | 0 .../_generated_daemonendpoint_v1_definition.md | 0 .../_generated_daemonset_v1beta1_concept.md | 0 .../_generated_daemonset_v1beta1_definition.md | 0 .../_generated_daemonsetlist_v1beta1_concept.md | 0 ...generated_daemonsetlist_v1beta1_definition.md | 0 .../_generated_daemonsetspec_v1beta1_concept.md | 0 ...generated_daemonsetspec_v1beta1_definition.md | 0 ..._generated_daemonsetstatus_v1beta1_concept.md | 0 ...nerated_daemonsetstatus_v1beta1_definition.md | 0 .../_generated_deleteoptions_v1_concept.md | 0 .../_generated_deleteoptions_v1_definition.md | 0 .../_generated_deployment_v1beta1_concept.md | 0 .../_generated_deployment_v1beta1_definition.md | 0 ...erated_deploymentcondition_v1beta1_concept.md | 0 ...ted_deploymentcondition_v1beta1_definition.md | 0 .../_generated_deploymentlist_v1beta1_concept.md | 0 ...enerated_deploymentlist_v1beta1_definition.md | 0 ...nerated_deploymentrollback_v1beta1_concept.md | 0 ...ated_deploymentrollback_v1beta1_definition.md | 0 .../_generated_deploymentspec_v1beta1_concept.md | 0 ...enerated_deploymentspec_v1beta1_definition.md | 0 ...generated_deploymentstatus_v1beta1_concept.md | 0 ...erated_deploymentstatus_v1beta1_definition.md | 0 ...nerated_deploymentstrategy_v1beta1_concept.md | 0 ...ated_deploymentstrategy_v1beta1_definition.md | 0 .../_generated_endpointaddress_v1_concept.md | 0 .../_generated_endpointaddress_v1_definition.md | 0 .../_generated_endpointport_v1_concept.md | 0 .../_generated_endpointport_v1_definition.md | 0 .../documents/_generated_endpoints_v1_concept.md | 0 .../_generated_endpoints_v1_definition.md | 0 .../_generated_endpointslist_v1_concept.md | 0 .../_generated_endpointslist_v1_definition.md | 0 .../_generated_endpointsubset_v1_concept.md | 0 .../_generated_endpointsubset_v1_definition.md | 0 .../documents/_generated_envvar_v1_concept.md | 0 .../documents/_generated_envvar_v1_definition.md | 0 .../_generated_envvarsource_v1_concept.md | 0 .../_generated_envvarsource_v1_definition.md | 0 .../documents/_generated_event_v1_concept.md | 0 .../documents/_generated_event_v1_definition.md | 0 .../_generated_event_versioned_concept.md | 0 .../_generated_event_versioned_definition.md | 0 .../documents/_generated_eventlist_v1_concept.md | 0 .../_generated_eventlist_v1_definition.md | 0 .../_generated_eventsource_v1_concept.md | 0 .../_generated_eventsource_v1_definition.md | 0 .../_generated_eviction_v1beta1_concept.md | 0 .../_generated_eviction_v1beta1_definition.md | 0 .../_generated_execaction_v1_concept.md | 0 .../_generated_execaction_v1_definition.md | 0 ...oupversionfordiscovery_unversioned_concept.md | 0 ...versionfordiscovery_unversioned_definition.md | 0 .../documents/_generated_handler_v1_concept.md | 0 .../_generated_handler_v1_definition.md | 0 ...nerated_horizontalpodautoscaler_v1_concept.md | 0 ...ated_horizontalpodautoscaler_v1_definition.md | 0 ...ed_horizontalpodautoscaler_v1beta1_concept.md | 0 ...horizontalpodautoscaler_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerlist_v1_concept.md | 0 ..._horizontalpodautoscalerlist_v1_definition.md | 0 ...orizontalpodautoscalerlist_v1beta1_concept.md | 0 ...zontalpodautoscalerlist_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerspec_v1_concept.md | 0 ..._horizontalpodautoscalerspec_v1_definition.md | 0 ...orizontalpodautoscalerspec_v1beta1_concept.md | 0 ...zontalpodautoscalerspec_v1beta1_definition.md | 0 ...d_horizontalpodautoscalerstatus_v1_concept.md | 0 ...orizontalpodautoscalerstatus_v1_definition.md | 0 ...izontalpodautoscalerstatus_v1beta1_concept.md | 0 ...ntalpodautoscalerstatus_v1beta1_definition.md | 0 .../_generated_httpgetaction_v1_concept.md | 0 .../_generated_httpgetaction_v1_definition.md | 0 .../_generated_httpheader_v1_concept.md | 0 .../_generated_httpheader_v1_definition.md | 0 .../documents/_generated_info_version_concept.md | 0 .../_generated_info_version_definition.md | 0 .../_generated_ingress_v1beta1_concept.md | 0 .../_generated_ingress_v1beta1_definition.md | 0 .../_generated_ingressbackend_v1beta1_concept.md | 0 ...enerated_ingressbackend_v1beta1_definition.md | 0 .../_generated_ingresslist_v1beta1_concept.md | 0 .../_generated_ingresslist_v1beta1_definition.md | 0 .../_generated_ingressrule_v1beta1_concept.md | 0 .../_generated_ingressrule_v1beta1_definition.md | 0 .../_generated_ingressspec_v1beta1_concept.md | 0 .../_generated_ingressspec_v1beta1_definition.md | 0 .../_generated_ingressstatus_v1beta1_concept.md | 0 ...generated_ingressstatus_v1beta1_definition.md | 0 .../_generated_ingresstls_v1beta1_concept.md | 0 .../_generated_ingresstls_v1beta1_definition.md | 0 .../_generated_intorstring_intstr_concept.md | 0 .../_generated_intorstring_intstr_definition.md | 0 .../documents/_generated_job_v1_concept.md | 0 .../documents/_generated_job_v1_definition.md | 0 .../documents/_generated_job_v1beta1_concept.md | 0 .../_generated_job_v1beta1_definition.md | 0 .../documents/_generated_job_v2alpha1_concept.md | 0 .../_generated_job_v2alpha1_definition.md | 0 .../_generated_jobcondition_v1_concept.md | 0 .../_generated_jobcondition_v1_definition.md | 0 .../_generated_jobcondition_v1beta1_concept.md | 0 ..._generated_jobcondition_v1beta1_definition.md | 0 .../_generated_jobcondition_v2alpha1_concept.md | 0 ...generated_jobcondition_v2alpha1_definition.md | 0 .../documents/_generated_joblist_v1_concept.md | 0 .../_generated_joblist_v1_definition.md | 0 .../_generated_joblist_v1beta1_concept.md | 0 .../_generated_joblist_v1beta1_definition.md | 0 .../_generated_joblist_v2alpha1_concept.md | 0 .../_generated_joblist_v2alpha1_definition.md | 0 .../documents/_generated_jobspec_v1_concept.md | 0 .../_generated_jobspec_v1_definition.md | 0 .../_generated_jobspec_v1beta1_concept.md | 0 .../_generated_jobspec_v1beta1_definition.md | 0 .../_generated_jobspec_v2alpha1_concept.md | 0 .../_generated_jobspec_v2alpha1_definition.md | 0 .../documents/_generated_jobstatus_v1_concept.md | 0 .../_generated_jobstatus_v1_definition.md | 0 .../_generated_jobstatus_v1beta1_concept.md | 0 .../_generated_jobstatus_v1beta1_definition.md | 0 .../_generated_jobstatus_v2alpha1_concept.md | 0 .../_generated_jobstatus_v2alpha1_definition.md | 0 ...generated_jobtemplatespec_v2alpha1_concept.md | 0 ...erated_jobtemplatespec_v2alpha1_definition.md | 0 ...enerated_labelselector_unversioned_concept.md | 0 ...rated_labelselector_unversioned_definition.md | 0 ...belselectorrequirement_unversioned_concept.md | 0 ...selectorrequirement_unversioned_definition.md | 0 .../documents/_generated_lifecycle_v1_concept.md | 0 .../_generated_lifecycle_v1_definition.md | 0 .../_generated_limitrange_v1_concept.md | 0 .../_generated_limitrange_v1_definition.md | 0 .../_generated_limitrangeitem_v1_concept.md | 0 .../_generated_limitrangeitem_v1_definition.md | 0 .../_generated_limitrangelist_v1_concept.md | 0 .../_generated_limitrangelist_v1_definition.md | 0 .../_generated_limitrangespec_v1_concept.md | 0 .../_generated_limitrangespec_v1_definition.md | 0 .../_generated_listmeta_unversioned_concept.md | 0 ..._generated_listmeta_unversioned_definition.md | 0 .../_generated_loadbalanceringress_v1_concept.md | 0 ...enerated_loadbalanceringress_v1_definition.md | 0 .../_generated_loadbalancerstatus_v1_concept.md | 0 ...generated_loadbalancerstatus_v1_definition.md | 0 ..._generated_localobjectreference_v1_concept.md | 0 ...nerated_localobjectreference_v1_definition.md | 0 ...d_localsubjectaccessreview_v1beta1_concept.md | 0 ...ocalsubjectaccessreview_v1beta1_definition.md | 0 .../documents/_generated_namespace_v1_concept.md | 0 .../_generated_namespace_v1_definition.md | 0 .../_generated_namespacelist_v1_concept.md | 0 .../_generated_namespacelist_v1_definition.md | 0 .../_generated_namespacespec_v1_concept.md | 0 .../_generated_namespacespec_v1_definition.md | 0 .../_generated_namespacestatus_v1_concept.md | 0 .../_generated_namespacestatus_v1_definition.md | 0 .../_generated_networkpolicy_v1beta1_concept.md | 0 ...generated_networkpolicy_v1beta1_definition.md | 0 ...d_networkpolicyingressrule_v1beta1_concept.md | 0 ...etworkpolicyingressrule_v1beta1_definition.md | 0 ...enerated_networkpolicylist_v1beta1_concept.md | 0 ...rated_networkpolicylist_v1beta1_definition.md | 0 ...enerated_networkpolicypeer_v1beta1_concept.md | 0 ...rated_networkpolicypeer_v1beta1_definition.md | 0 ...enerated_networkpolicyport_v1beta1_concept.md | 0 ...rated_networkpolicyport_v1beta1_definition.md | 0 ...enerated_networkpolicyspec_v1beta1_concept.md | 0 ...rated_networkpolicyspec_v1beta1_definition.md | 0 .../documents/_generated_node_v1_concept.md | 0 .../documents/_generated_node_v1_definition.md | 0 .../_generated_nodeaddress_v1_concept.md | 0 .../_generated_nodeaddress_v1_definition.md | 0 .../_generated_nodecondition_v1_concept.md | 0 .../_generated_nodecondition_v1_definition.md | 0 .../_generated_nodedaemonendpoints_v1_concept.md | 0 ...enerated_nodedaemonendpoints_v1_definition.md | 0 .../documents/_generated_nodelist_v1_concept.md | 0 .../_generated_nodelist_v1_definition.md | 0 .../documents/_generated_nodespec_v1_concept.md | 0 .../_generated_nodespec_v1_definition.md | 0 .../_generated_nodestatus_v1_concept.md | 0 .../_generated_nodestatus_v1_definition.md | 0 .../_generated_nodesysteminfo_v1_concept.md | 0 .../_generated_nodesysteminfo_v1_definition.md | 0 ...ated_nonresourceattributes_v1beta1_concept.md | 0 ...d_nonresourceattributes_v1beta1_definition.md | 0 .../_generated_objectfieldselector_v1_concept.md | 0 ...enerated_objectfieldselector_v1_definition.md | 0 .../_generated_objectmeta_v1_concept.md | 0 .../_generated_objectmeta_v1_definition.md | 0 .../_generated_objectreference_v1_concept.md | 0 .../_generated_objectreference_v1_definition.md | 0 .../_generated_ownerreference_v1_concept.md | 0 .../_generated_ownerreference_v1_definition.md | 0 .../_generated_patch_unversioned_concept.md | 0 .../_generated_patch_unversioned_definition.md | 0 .../_generated_persistentvolume_v1_concept.md | 0 .../_generated_persistentvolume_v1_definition.md | 0 ...generated_persistentvolumeclaim_v1_concept.md | 0 ...erated_persistentvolumeclaim_v1_definition.md | 0 ...rated_persistentvolumeclaimlist_v1_concept.md | 0 ...ed_persistentvolumeclaimlist_v1_definition.md | 0 ...rated_persistentvolumeclaimspec_v1_concept.md | 0 ...ed_persistentvolumeclaimspec_v1_definition.md | 0 ...ted_persistentvolumeclaimstatus_v1_concept.md | 0 ..._persistentvolumeclaimstatus_v1_definition.md | 0 ..._generated_persistentvolumelist_v1_concept.md | 0 ...nerated_persistentvolumelist_v1_definition.md | 0 ..._generated_persistentvolumespec_v1_concept.md | 0 ...nerated_persistentvolumespec_v1_definition.md | 0 ...enerated_persistentvolumestatus_v1_concept.md | 0 ...rated_persistentvolumestatus_v1_definition.md | 0 .../documents/_generated_pod_v1_concept.md | 0 .../documents/_generated_pod_v1_definition.md | 0 .../_generated_podcondition_v1_concept.md | 0 .../_generated_podcondition_v1_definition.md | 0 ...erated_poddisruptionbudget_v1beta1_concept.md | 0 ...ted_poddisruptionbudget_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetlist_v1beta1_concept.md | 0 ...poddisruptionbudgetlist_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetspec_v1beta1_concept.md | 0 ...poddisruptionbudgetspec_v1beta1_definition.md | 0 ..._poddisruptionbudgetstatus_v1beta1_concept.md | 0 ...ddisruptionbudgetstatus_v1beta1_definition.md | 0 .../documents/_generated_podlist_v1_concept.md | 0 .../_generated_podlist_v1_definition.md | 0 .../_generated_podsecuritycontext_v1_concept.md | 0 ...generated_podsecuritycontext_v1_definition.md | 0 .../documents/_generated_podspec_v1_concept.md | 0 .../_generated_podspec_v1_definition.md | 0 .../documents/_generated_podstatus_v1_concept.md | 0 .../_generated_podstatus_v1_definition.md | 0 .../_generated_podtemplate_v1_concept.md | 0 .../_generated_podtemplate_v1_definition.md | 0 .../_generated_podtemplatelist_v1_concept.md | 0 .../_generated_podtemplatelist_v1_definition.md | 0 .../_generated_podtemplatespec_v1_concept.md | 0 .../_generated_podtemplatespec_v1_definition.md | 0 .../_generated_policyrule_v1alpha1_concept.md | 0 .../_generated_policyrule_v1alpha1_definition.md | 0 .../_generated_preconditions_v1_concept.md | 0 .../_generated_preconditions_v1_definition.md | 0 .../documents/_generated_probe_v1_concept.md | 0 .../documents/_generated_probe_v1_definition.md | 0 .../_generated_quantity_resource_concept.md | 0 .../_generated_quantity_resource_definition.md | 0 .../_generated_rawextension_runtime_concept.md | 0 ..._generated_rawextension_runtime_definition.md | 0 .../_generated_replicaset_v1beta1_concept.md | 0 .../_generated_replicaset_v1beta1_definition.md | 0 ...erated_replicasetcondition_v1beta1_concept.md | 0 ...ted_replicasetcondition_v1beta1_definition.md | 0 .../_generated_replicasetlist_v1beta1_concept.md | 0 ...enerated_replicasetlist_v1beta1_definition.md | 0 .../_generated_replicasetspec_v1beta1_concept.md | 0 ...enerated_replicasetspec_v1beta1_definition.md | 0 ...generated_replicasetstatus_v1beta1_concept.md | 0 ...erated_replicasetstatus_v1beta1_definition.md | 0 ...generated_replicationcontroller_v1_concept.md | 0 ...erated_replicationcontroller_v1_definition.md | 0 ..._replicationcontrollercondition_v1_concept.md | 0 ...plicationcontrollercondition_v1_definition.md | 0 ...rated_replicationcontrollerlist_v1_concept.md | 0 ...ed_replicationcontrollerlist_v1_definition.md | 0 ...rated_replicationcontrollerspec_v1_concept.md | 0 ...ed_replicationcontrollerspec_v1_definition.md | 0 ...ted_replicationcontrollerstatus_v1_concept.md | 0 ..._replicationcontrollerstatus_v1_definition.md | 0 ...nerated_resourceattributes_v1beta1_concept.md | 0 ...ated_resourceattributes_v1beta1_definition.md | 0 ...generated_resourcefieldselector_v1_concept.md | 0 ...erated_resourcefieldselector_v1_definition.md | 0 .../_generated_resourcequota_v1_concept.md | 0 .../_generated_resourcequota_v1_definition.md | 0 .../_generated_resourcequotalist_v1_concept.md | 0 ..._generated_resourcequotalist_v1_definition.md | 0 .../_generated_resourcequotaspec_v1_concept.md | 0 ..._generated_resourcequotaspec_v1_definition.md | 0 .../_generated_resourcequotastatus_v1_concept.md | 0 ...enerated_resourcequotastatus_v1_definition.md | 0 ..._generated_resourcerequirements_v1_concept.md | 0 ...nerated_resourcerequirements_v1_definition.md | 0 .../_generated_role_v1alpha1_concept.md | 0 .../_generated_role_v1alpha1_definition.md | 0 .../_generated_rolebinding_v1alpha1_concept.md | 0 ..._generated_rolebinding_v1alpha1_definition.md | 0 ...generated_rolebindinglist_v1alpha1_concept.md | 0 ...erated_rolebindinglist_v1alpha1_definition.md | 0 .../_generated_rolelist_v1alpha1_concept.md | 0 .../_generated_rolelist_v1alpha1_definition.md | 0 .../_generated_roleref_v1alpha1_concept.md | 0 .../_generated_roleref_v1alpha1_definition.md | 0 .../_generated_rollbackconfig_v1beta1_concept.md | 0 ...enerated_rollbackconfig_v1beta1_definition.md | 0 ...ed_rollingupdatedeployment_v1beta1_concept.md | 0 ...rollingupdatedeployment_v1beta1_definition.md | 0 .../documents/_generated_scale_v1_concept.md | 0 .../documents/_generated_scale_v1_definition.md | 0 .../_generated_scale_v1beta1_concept.md | 0 .../_generated_scale_v1beta1_definition.md | 0 .../documents/_generated_scalespec_v1_concept.md | 0 .../_generated_scalespec_v1_definition.md | 0 .../_generated_scalespec_v1beta1_concept.md | 0 .../_generated_scalespec_v1beta1_definition.md | 0 .../_generated_scalestatus_v1_concept.md | 0 .../_generated_scalestatus_v1_definition.md | 0 .../_generated_scalestatus_v1beta1_concept.md | 0 .../_generated_scalestatus_v1beta1_definition.md | 0 .../documents/_generated_secret_v1_concept.md | 0 .../documents/_generated_secret_v1_definition.md | 0 .../_generated_secretkeyselector_v1_concept.md | 0 ..._generated_secretkeyselector_v1_definition.md | 0 .../_generated_secretlist_v1_concept.md | 0 .../_generated_secretlist_v1_definition.md | 0 .../_generated_securitycontext_v1_concept.md | 0 .../_generated_securitycontext_v1_definition.md | 0 ...ed_selfsubjectaccessreview_v1beta1_concept.md | 0 ...selfsubjectaccessreview_v1beta1_definition.md | 0 ...elfsubjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 .../_generated_selinuxoptions_v1_concept.md | 0 .../_generated_selinuxoptions_v1_definition.md | 0 ...veraddressbyclientcidr_unversioned_concept.md | 0 ...addressbyclientcidr_unversioned_definition.md | 0 .../documents/_generated_service_v1_concept.md | 0 .../_generated_service_v1_definition.md | 0 .../_generated_serviceaccount_v1_concept.md | 0 .../_generated_serviceaccount_v1_definition.md | 0 .../_generated_serviceaccountlist_v1_concept.md | 0 ...generated_serviceaccountlist_v1_definition.md | 0 .../_generated_servicelist_v1_concept.md | 0 .../_generated_servicelist_v1_definition.md | 0 .../_generated_serviceport_v1_concept.md | 0 .../_generated_serviceport_v1_definition.md | 0 .../_generated_servicespec_v1_concept.md | 0 .../_generated_servicespec_v1_definition.md | 0 .../_generated_servicestatus_v1_concept.md | 0 .../_generated_servicestatus_v1_definition.md | 0 .../_generated_statefulset_v1beta1_concept.md | 0 .../_generated_statefulset_v1beta1_definition.md | 0 ..._generated_statefulsetlist_v1beta1_concept.md | 0 ...nerated_statefulsetlist_v1beta1_definition.md | 0 ..._generated_statefulsetspec_v1beta1_concept.md | 0 ...nerated_statefulsetspec_v1beta1_definition.md | 0 ...enerated_statefulsetstatus_v1beta1_concept.md | 0 ...rated_statefulsetstatus_v1beta1_definition.md | 0 .../_generated_status_unversioned_concept.md | 0 .../_generated_status_unversioned_definition.md | 0 ..._generated_statuscause_unversioned_concept.md | 0 ...nerated_statuscause_unversioned_definition.md | 0 ...enerated_statusdetails_unversioned_concept.md | 0 ...rated_statusdetails_unversioned_definition.md | 0 .../_generated_storageclass_v1beta1_concept.md | 0 ..._generated_storageclass_v1beta1_definition.md | 0 ...generated_storageclasslist_v1beta1_concept.md | 0 ...erated_storageclasslist_v1beta1_definition.md | 0 .../_generated_subject_v1alpha1_concept.md | 0 .../_generated_subject_v1alpha1_definition.md | 0 ...erated_subjectaccessreview_v1beta1_concept.md | 0 ...ted_subjectaccessreview_v1beta1_definition.md | 0 ...ed_subjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 ..._subjectaccessreviewstatus_v1beta1_concept.md | 0 ...bjectaccessreviewstatus_v1beta1_definition.md | 0 ...rated_subresourcereference_v1beta1_concept.md | 0 ...ed_subresourcereference_v1beta1_definition.md | 0 .../_generated_tcpsocketaction_v1_concept.md | 0 .../_generated_tcpsocketaction_v1_definition.md | 0 ...nerated_thirdpartyresource_v1beta1_concept.md | 0 ...ated_thirdpartyresource_v1beta1_definition.md | 0 ...ted_thirdpartyresourcelist_v1beta1_concept.md | 0 ..._thirdpartyresourcelist_v1beta1_definition.md | 0 .../_generated_time_unversioned_concept.md | 0 .../_generated_time_unversioned_definition.md | 0 .../_generated_tokenreview_v1beta1_concept.md | 0 .../_generated_tokenreview_v1beta1_definition.md | 0 ..._generated_tokenreviewspec_v1beta1_concept.md | 0 ...nerated_tokenreviewspec_v1beta1_definition.md | 0 ...enerated_tokenreviewstatus_v1beta1_concept.md | 0 ...rated_tokenreviewstatus_v1beta1_definition.md | 0 .../_generated_userinfo_v1beta1_concept.md | 0 .../_generated_userinfo_v1beta1_definition.md | 0 .../documents/_generated_volume_v1_concept.md | 0 .../documents/_generated_volume_v1_definition.md | 0 .../_generated_volumemount_v1_concept.md | 0 .../_generated_volumemount_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_meta.md | 0 .../{1_5 => v1.5}/documents/_oldversions.md | 0 .../{1_5 => v1.5}/documents/_overview.md | 0 .../{1_5 => v1.5}/documents/_servicediscovery.md | 0 .../{1_5 => v1.5}/documents/_workloads.md | 0 .../documents/deployment-original.md | 0 .../{1_5 => v1.5}/documents/deployment.md | 0 docs/api-reference/{1_5 => v1.5}/index.html | 0 docs/api-reference/{1_5 => v1.5}/jsconfig.json | 0 docs/api-reference/{1_5 => v1.5}/manifest.json | 0 .../{1_5 => v1.5}/markedDecorations.js | 0 docs/api-reference/{1_5 => v1.5}/navData.js | 0 .../{1_5 => v1.5}/node_modules/.bin/marked | 0 .../{1_5 => v1.5}/node_modules/.bin/mime | 0 .../{1_5 => v1.5}/node_modules/.bin/static | 0 .../node_modules/bootstrap/CHANGELOG.md | 0 .../node_modules/bootstrap/Gruntfile.js | 0 .../{1_5 => v1.5}/node_modules/bootstrap/LICENSE | 0 .../node_modules/bootstrap/README.md | 0 .../bootstrap/dist/css/bootstrap-theme.css | 0 .../bootstrap/dist/css/bootstrap-theme.css.map | 0 .../bootstrap/dist/css/bootstrap-theme.min.css | 0 .../dist/css/bootstrap-theme.min.css.map | 0 .../bootstrap/dist/css/bootstrap.css | 0 .../bootstrap/dist/css/bootstrap.css.map | 0 .../bootstrap/dist/css/bootstrap.min.css | 0 .../bootstrap/dist/css/bootstrap.min.css.map | 0 .../dist/fonts/glyphicons-halflings-regular.eot | Bin .../dist/fonts/glyphicons-halflings-regular.svg | 0 .../dist/fonts/glyphicons-halflings-regular.ttf | Bin .../dist/fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/dist/js/bootstrap.js | 0 .../bootstrap/dist/js/bootstrap.min.js | 0 .../node_modules/bootstrap/dist/js/npm.js | 0 .../fonts/glyphicons-halflings-regular.eot | Bin .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | Bin .../fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/grunt/.jshintrc | 0 .../bootstrap/grunt/bs-commonjs-generator.js | 0 .../grunt/bs-glyphicons-data-generator.js | 0 .../bootstrap/grunt/bs-lessdoc-parser.js | 0 .../bootstrap/grunt/bs-raw-files-generator.js | 0 .../bootstrap/grunt/change-version.js | 0 .../bootstrap/grunt/configBridge.json | 0 .../bootstrap/grunt/npm-shrinkwrap.json | 0 .../bootstrap/grunt/sauce_browsers.yml | 0 .../node_modules/bootstrap/js/affix.js | 0 .../node_modules/bootstrap/js/alert.js | 0 .../node_modules/bootstrap/js/button.js | 0 .../node_modules/bootstrap/js/carousel.js | 0 .../node_modules/bootstrap/js/collapse.js | 0 .../node_modules/bootstrap/js/dropdown.js | 0 .../node_modules/bootstrap/js/modal.js | 0 .../node_modules/bootstrap/js/popover.js | 0 .../node_modules/bootstrap/js/scrollspy.js | 0 .../node_modules/bootstrap/js/tab.js | 0 .../node_modules/bootstrap/js/tooltip.js | 0 .../node_modules/bootstrap/js/transition.js | 0 .../node_modules/bootstrap/less/alerts.less | 0 .../node_modules/bootstrap/less/badges.less | 0 .../node_modules/bootstrap/less/bootstrap.less | 0 .../node_modules/bootstrap/less/breadcrumbs.less | 0 .../bootstrap/less/button-groups.less | 0 .../node_modules/bootstrap/less/buttons.less | 0 .../node_modules/bootstrap/less/carousel.less | 0 .../node_modules/bootstrap/less/close.less | 0 .../node_modules/bootstrap/less/code.less | 0 .../bootstrap/less/component-animations.less | 0 .../node_modules/bootstrap/less/dropdowns.less | 0 .../node_modules/bootstrap/less/forms.less | 0 .../node_modules/bootstrap/less/glyphicons.less | 0 .../node_modules/bootstrap/less/grid.less | 0 .../bootstrap/less/input-groups.less | 0 .../node_modules/bootstrap/less/jumbotron.less | 0 .../node_modules/bootstrap/less/labels.less | 0 .../node_modules/bootstrap/less/list-group.less | 0 .../node_modules/bootstrap/less/media.less | 0 .../node_modules/bootstrap/less/mixins.less | 0 .../bootstrap/less/mixins/alerts.less | 0 .../less/mixins/background-variant.less | 0 .../bootstrap/less/mixins/border-radius.less | 0 .../bootstrap/less/mixins/buttons.less | 0 .../bootstrap/less/mixins/center-block.less | 0 .../bootstrap/less/mixins/clearfix.less | 0 .../bootstrap/less/mixins/forms.less | 0 .../bootstrap/less/mixins/gradients.less | 0 .../bootstrap/less/mixins/grid-framework.less | 0 .../node_modules/bootstrap/less/mixins/grid.less | 0 .../bootstrap/less/mixins/hide-text.less | 0 .../bootstrap/less/mixins/image.less | 0 .../bootstrap/less/mixins/labels.less | 0 .../bootstrap/less/mixins/list-group.less | 0 .../bootstrap/less/mixins/nav-divider.less | 0 .../less/mixins/nav-vertical-align.less | 0 .../bootstrap/less/mixins/opacity.less | 0 .../bootstrap/less/mixins/pagination.less | 0 .../bootstrap/less/mixins/panels.less | 0 .../bootstrap/less/mixins/progress-bar.less | 0 .../bootstrap/less/mixins/reset-filter.less | 0 .../bootstrap/less/mixins/reset-text.less | 0 .../bootstrap/less/mixins/resize.less | 0 .../less/mixins/responsive-visibility.less | 0 .../node_modules/bootstrap/less/mixins/size.less | 0 .../bootstrap/less/mixins/tab-focus.less | 0 .../bootstrap/less/mixins/table-row.less | 0 .../bootstrap/less/mixins/text-emphasis.less | 0 .../bootstrap/less/mixins/text-overflow.less | 0 .../bootstrap/less/mixins/vendor-prefixes.less | 0 .../node_modules/bootstrap/less/modals.less | 0 .../node_modules/bootstrap/less/navbar.less | 0 .../node_modules/bootstrap/less/navs.less | 0 .../node_modules/bootstrap/less/normalize.less | 0 .../node_modules/bootstrap/less/pager.less | 0 .../node_modules/bootstrap/less/pagination.less | 0 .../node_modules/bootstrap/less/panels.less | 0 .../node_modules/bootstrap/less/popovers.less | 0 .../node_modules/bootstrap/less/print.less | 0 .../bootstrap/less/progress-bars.less | 0 .../bootstrap/less/responsive-embed.less | 0 .../bootstrap/less/responsive-utilities.less | 0 .../node_modules/bootstrap/less/scaffolding.less | 0 .../node_modules/bootstrap/less/tables.less | 0 .../node_modules/bootstrap/less/theme.less | 0 .../node_modules/bootstrap/less/thumbnails.less | 0 .../node_modules/bootstrap/less/tooltip.less | 0 .../node_modules/bootstrap/less/type.less | 0 .../node_modules/bootstrap/less/utilities.less | 0 .../node_modules/bootstrap/less/variables.less | 0 .../node_modules/bootstrap/less/wells.less | 0 .../node_modules/bootstrap/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/LICENSE | 0 .../{1_5 => v1.5}/node_modules/colors/ReadMe.md | 0 .../node_modules/colors/examples/normal-usage.js | 0 .../node_modules/colors/examples/safe-string.js | 0 .../node_modules/colors/lib/colors.js | 0 .../node_modules/colors/lib/custom/trap.js | 0 .../node_modules/colors/lib/custom/zalgo.js | 0 .../colors/lib/extendStringPrototype.js | 0 .../node_modules/colors/lib/index.js | 0 .../node_modules/colors/lib/maps/america.js | 0 .../node_modules/colors/lib/maps/rainbow.js | 0 .../node_modules/colors/lib/maps/random.js | 0 .../node_modules/colors/lib/maps/zebra.js | 0 .../node_modules/colors/lib/styles.js | 0 .../colors/lib/system/supports-colors.js | 0 .../node_modules/colors/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/safe.js | 0 .../colors/themes/generic-logging.js | 0 .../{1_5 => v1.5}/node_modules/ejs/Jakefile | 0 .../{1_5 => v1.5}/node_modules/ejs/LICENSE | 0 .../{1_5 => v1.5}/node_modules/ejs/README.md | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.min.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/utils.js | 0 .../{1_5 => v1.5}/node_modules/ejs/package.json | 0 .../{1_5 => v1.5}/node_modules/ejs/test/ejs.js | 0 .../node_modules/ejs/test/fixtures/backslash.ejs | 0 .../ejs/test/fixtures/backslash.html | 0 .../node_modules/ejs/test/fixtures/comments.ejs | 0 .../node_modules/ejs/test/fixtures/comments.html | 0 .../ejs/test/fixtures/consecutive-tags.ejs | 0 .../ejs/test/fixtures/consecutive-tags.html | 0 .../ejs/test/fixtures/double-quote.ejs | 0 .../ejs/test/fixtures/double-quote.html | 0 .../node_modules/ejs/test/fixtures/error.ejs | 0 .../node_modules/ejs/test/fixtures/error.out | 0 .../node_modules/ejs/test/fixtures/fail.ejs | 0 .../ejs/test/fixtures/hello-world.ejs | 0 .../ejs/test/fixtures/include-abspath.ejs | 0 .../ejs/test/fixtures/include-root.ejs | 0 .../ejs/test/fixtures/include-simple.ejs | 0 .../ejs/test/fixtures/include-simple.html | 0 .../ejs/test/fixtures/include.css.ejs | 0 .../ejs/test/fixtures/include.css.html | 0 .../node_modules/ejs/test/fixtures/include.ejs | 0 .../node_modules/ejs/test/fixtures/include.html | 0 .../ejs/test/fixtures/include_cache.ejs | 0 .../ejs/test/fixtures/include_cache.html | 0 .../test/fixtures/include_preprocessor.css.ejs | 0 .../test/fixtures/include_preprocessor.css.html | 0 .../ejs/test/fixtures/include_preprocessor.ejs | 0 .../ejs/test/fixtures/include_preprocessor.html | 0 .../test/fixtures/include_preprocessor_cache.ejs | 0 .../fixtures/include_preprocessor_cache.html | 0 .../fixtures/include_preprocessor_line_slurp.ejs | 0 .../include_preprocessor_line_slurp.html | 0 .../include_preprocessor_line_slurp_child.ejs | 0 .../ejs/test/fixtures/includes/bom.ejs | 0 .../ejs/test/fixtures/includes/menu-item.ejs | 0 .../ejs/test/fixtures/includes/menu/item.ejs | 0 .../node_modules/ejs/test/fixtures/literal.ejs | 0 .../node_modules/ejs/test/fixtures/literal.html | 0 .../node_modules/ejs/test/fixtures/menu.ejs | 0 .../node_modules/ejs/test/fixtures/menu.html | 0 .../ejs/test/fixtures/menu_preprocessor.ejs | 0 .../ejs/test/fixtures/menu_preprocessor.html | 0 .../node_modules/ejs/test/fixtures/menu_var.ejs | 0 .../node_modules/ejs/test/fixtures/messed.ejs | 0 .../node_modules/ejs/test/fixtures/messed.html | 0 .../node_modules/ejs/test/fixtures/newlines.ejs | 0 .../node_modules/ejs/test/fixtures/newlines.html | 0 .../ejs/test/fixtures/newlines.mixed.ejs | 0 .../ejs/test/fixtures/newlines.mixed.html | 0 .../ejs/test/fixtures/no.newlines.ejs | 0 .../ejs/test/fixtures/no.newlines.error.ejs | 0 .../ejs/test/fixtures/no.newlines.html | 0 .../ejs/test/fixtures/no.semicolons.ejs | 0 .../ejs/test/fixtures/no.semicolons.html | 0 .../node_modules/ejs/test/fixtures/para.ejs | 0 .../node_modules/ejs/test/fixtures/pet.ejs | 0 .../ejs/test/fixtures/rmWhitespace.ejs | 0 .../ejs/test/fixtures/rmWhitespace.html | 0 .../ejs/test/fixtures/single-quote.ejs | 0 .../ejs/test/fixtures/single-quote.html | 0 .../ejs/test/fixtures/space-and-tab-slurp.ejs | 0 .../ejs/test/fixtures/space-and-tab-slurp.html | 0 .../node_modules/ejs/test/fixtures/strict.ejs | 0 .../node_modules/ejs/test/fixtures/style.css | 0 .../ejs/test/fixtures/user-no-with.ejs | 0 .../node_modules/ejs/test/fixtures/user.ejs | 0 .../ejs/test/fixtures/with-context.ejs | 0 .../node_modules/ejs/test/mocha.opts | 0 .../node_modules/ejs/test/tmp/include.ejs | 0 .../ejs/test/tmp/include_preprocessor.ejs | 0 .../node_modules/ejs/test/tmp/renderFile.ejs | 0 .../node_modules/font-awesome/.npmignore | 0 .../node_modules/font-awesome/HELP-US-OUT.txt | 0 .../node_modules/font-awesome/README.md | 0 .../font-awesome/css/font-awesome.css | 0 .../font-awesome/css/font-awesome.css.map | 0 .../font-awesome/css/font-awesome.min.css | 0 .../font-awesome/fonts/FontAwesome.otf | Bin .../font-awesome/fonts/fontawesome-webfont.eot | Bin .../font-awesome/fonts/fontawesome-webfont.svg | 0 .../font-awesome/fonts/fontawesome-webfont.ttf | Bin .../font-awesome/fonts/fontawesome-webfont.woff | Bin .../font-awesome/fonts/fontawesome-webfont.woff2 | Bin .../node_modules/font-awesome/less/animated.less | 0 .../font-awesome/less/bordered-pulled.less | 0 .../node_modules/font-awesome/less/core.less | 0 .../font-awesome/less/fixed-width.less | 0 .../font-awesome/less/font-awesome.less | 0 .../node_modules/font-awesome/less/icons.less | 0 .../node_modules/font-awesome/less/larger.less | 0 .../node_modules/font-awesome/less/list.less | 0 .../node_modules/font-awesome/less/mixins.less | 0 .../node_modules/font-awesome/less/path.less | 0 .../font-awesome/less/rotated-flipped.less | 0 .../font-awesome/less/screen-reader.less | 0 .../node_modules/font-awesome/less/stacked.less | 0 .../font-awesome/less/variables.less | 0 .../node_modules/font-awesome/package.json | 0 .../font-awesome/scss/_animated.scss | 0 .../font-awesome/scss/_bordered-pulled.scss | 0 .../node_modules/font-awesome/scss/_core.scss | 0 .../font-awesome/scss/_fixed-width.scss | 0 .../node_modules/font-awesome/scss/_icons.scss | 0 .../node_modules/font-awesome/scss/_larger.scss | 0 .../node_modules/font-awesome/scss/_list.scss | 0 .../node_modules/font-awesome/scss/_mixins.scss | 0 .../node_modules/font-awesome/scss/_path.scss | 0 .../font-awesome/scss/_rotated-flipped.scss | 0 .../font-awesome/scss/_screen-reader.scss | 0 .../node_modules/font-awesome/scss/_stacked.scss | 0 .../font-awesome/scss/_variables.scss | 0 .../font-awesome/scss/font-awesome.scss | 0 .../node_modules/highlight.js/LICENSE | 0 .../node_modules/highlight.js/README.md | 0 .../node_modules/highlight.js/docs/api.rst | 0 .../highlight.js/docs/building-testing.rst | 0 .../highlight.js/docs/css-classes-reference.rst | 0 .../node_modules/highlight.js/docs/index.rst | 0 .../highlight.js/docs/language-contribution.rst | 0 .../highlight.js/docs/language-guide.rst | 0 .../highlight.js/docs/language-requests.rst | 0 .../highlight.js/docs/line-numbers.rst | 0 .../node_modules/highlight.js/docs/reference.rst | 0 .../highlight.js/docs/release-process.rst | 0 .../highlight.js/docs/style-guide.rst | 0 .../node_modules/highlight.js/lib/highlight.js | 0 .../node_modules/highlight.js/lib/index.js | 0 .../highlight.js/lib/languages/1c.js | 0 .../highlight.js/lib/languages/abnf.js | 0 .../highlight.js/lib/languages/accesslog.js | 0 .../highlight.js/lib/languages/actionscript.js | 0 .../highlight.js/lib/languages/ada.js | 0 .../highlight.js/lib/languages/apache.js | 0 .../highlight.js/lib/languages/applescript.js | 0 .../highlight.js/lib/languages/arduino.js | 0 .../highlight.js/lib/languages/armasm.js | 0 .../highlight.js/lib/languages/asciidoc.js | 0 .../highlight.js/lib/languages/aspectj.js | 0 .../highlight.js/lib/languages/autohotkey.js | 0 .../highlight.js/lib/languages/autoit.js | 0 .../highlight.js/lib/languages/avrasm.js | 0 .../highlight.js/lib/languages/awk.js | 0 .../highlight.js/lib/languages/axapta.js | 0 .../highlight.js/lib/languages/bash.js | 0 .../highlight.js/lib/languages/basic.js | 0 .../highlight.js/lib/languages/bnf.js | 0 .../highlight.js/lib/languages/brainfuck.js | 0 .../highlight.js/lib/languages/cal.js | 0 .../highlight.js/lib/languages/capnproto.js | 0 .../highlight.js/lib/languages/ceylon.js | 0 .../highlight.js/lib/languages/clean.js | 0 .../highlight.js/lib/languages/clojure-repl.js | 0 .../highlight.js/lib/languages/clojure.js | 0 .../highlight.js/lib/languages/cmake.js | 0 .../highlight.js/lib/languages/coffeescript.js | 0 .../highlight.js/lib/languages/coq.js | 0 .../highlight.js/lib/languages/cos.js | 0 .../highlight.js/lib/languages/cpp.js | 0 .../highlight.js/lib/languages/crmsh.js | 0 .../highlight.js/lib/languages/crystal.js | 0 .../highlight.js/lib/languages/cs.js | 0 .../highlight.js/lib/languages/csp.js | 0 .../highlight.js/lib/languages/css.js | 0 .../node_modules/highlight.js/lib/languages/d.js | 0 .../highlight.js/lib/languages/dart.js | 0 .../highlight.js/lib/languages/delphi.js | 0 .../highlight.js/lib/languages/diff.js | 0 .../highlight.js/lib/languages/django.js | 0 .../highlight.js/lib/languages/dns.js | 0 .../highlight.js/lib/languages/dockerfile.js | 0 .../highlight.js/lib/languages/dos.js | 0 .../highlight.js/lib/languages/dsconfig.js | 0 .../highlight.js/lib/languages/dts.js | 0 .../highlight.js/lib/languages/dust.js | 0 .../highlight.js/lib/languages/ebnf.js | 0 .../highlight.js/lib/languages/elixir.js | 0 .../highlight.js/lib/languages/elm.js | 0 .../highlight.js/lib/languages/erb.js | 0 .../highlight.js/lib/languages/erlang-repl.js | 0 .../highlight.js/lib/languages/erlang.js | 0 .../highlight.js/lib/languages/excel.js | 0 .../highlight.js/lib/languages/fix.js | 0 .../highlight.js/lib/languages/flix.js | 0 .../highlight.js/lib/languages/fortran.js | 0 .../highlight.js/lib/languages/fsharp.js | 0 .../highlight.js/lib/languages/gams.js | 0 .../highlight.js/lib/languages/gauss.js | 0 .../highlight.js/lib/languages/gcode.js | 0 .../highlight.js/lib/languages/gherkin.js | 0 .../highlight.js/lib/languages/glsl.js | 0 .../highlight.js/lib/languages/go.js | 0 .../highlight.js/lib/languages/golo.js | 0 .../highlight.js/lib/languages/gradle.js | 0 .../highlight.js/lib/languages/groovy.js | 0 .../highlight.js/lib/languages/haml.js | 0 .../highlight.js/lib/languages/handlebars.js | 0 .../highlight.js/lib/languages/haskell.js | 0 .../highlight.js/lib/languages/haxe.js | 0 .../highlight.js/lib/languages/hsp.js | 0 .../highlight.js/lib/languages/htmlbars.js | 0 .../highlight.js/lib/languages/http.js | 0 .../highlight.js/lib/languages/inform7.js | 0 .../highlight.js/lib/languages/ini.js | 0 .../highlight.js/lib/languages/irpf90.js | 0 .../highlight.js/lib/languages/java.js | 0 .../highlight.js/lib/languages/javascript.js | 0 .../highlight.js/lib/languages/json.js | 0 .../highlight.js/lib/languages/julia.js | 0 .../highlight.js/lib/languages/kotlin.js | 0 .../highlight.js/lib/languages/lasso.js | 0 .../highlight.js/lib/languages/ldif.js | 0 .../highlight.js/lib/languages/less.js | 0 .../highlight.js/lib/languages/lisp.js | 0 .../highlight.js/lib/languages/livecodeserver.js | 0 .../highlight.js/lib/languages/livescript.js | 0 .../highlight.js/lib/languages/llvm.js | 0 .../highlight.js/lib/languages/lsl.js | 0 .../highlight.js/lib/languages/lua.js | 0 .../highlight.js/lib/languages/makefile.js | 0 .../highlight.js/lib/languages/markdown.js | 0 .../highlight.js/lib/languages/mathematica.js | 0 .../highlight.js/lib/languages/matlab.js | 0 .../highlight.js/lib/languages/maxima.js | 0 .../highlight.js/lib/languages/mel.js | 0 .../highlight.js/lib/languages/mercury.js | 0 .../highlight.js/lib/languages/mipsasm.js | 0 .../highlight.js/lib/languages/mizar.js | 0 .../highlight.js/lib/languages/mojolicious.js | 0 .../highlight.js/lib/languages/monkey.js | 0 .../highlight.js/lib/languages/moonscript.js | 0 .../highlight.js/lib/languages/nginx.js | 0 .../highlight.js/lib/languages/nimrod.js | 0 .../highlight.js/lib/languages/nix.js | 0 .../highlight.js/lib/languages/nsis.js | 0 .../highlight.js/lib/languages/objectivec.js | 0 .../highlight.js/lib/languages/ocaml.js | 0 .../highlight.js/lib/languages/openscad.js | 0 .../highlight.js/lib/languages/oxygene.js | 0 .../highlight.js/lib/languages/parser3.js | 0 .../highlight.js/lib/languages/perl.js | 0 .../highlight.js/lib/languages/pf.js | 0 .../highlight.js/lib/languages/php.js | 0 .../highlight.js/lib/languages/pony.js | 0 .../highlight.js/lib/languages/powershell.js | 0 .../highlight.js/lib/languages/processing.js | 0 .../highlight.js/lib/languages/profile.js | 0 .../highlight.js/lib/languages/prolog.js | 0 .../highlight.js/lib/languages/protobuf.js | 0 .../highlight.js/lib/languages/puppet.js | 0 .../highlight.js/lib/languages/purebasic.js | 0 .../highlight.js/lib/languages/python.js | 0 .../node_modules/highlight.js/lib/languages/q.js | 0 .../highlight.js/lib/languages/qml.js | 0 .../node_modules/highlight.js/lib/languages/r.js | 0 .../highlight.js/lib/languages/rib.js | 0 .../highlight.js/lib/languages/roboconf.js | 0 .../highlight.js/lib/languages/rsl.js | 0 .../highlight.js/lib/languages/ruby.js | 0 .../highlight.js/lib/languages/ruleslanguage.js | 0 .../highlight.js/lib/languages/rust.js | 0 .../highlight.js/lib/languages/scala.js | 0 .../highlight.js/lib/languages/scheme.js | 0 .../highlight.js/lib/languages/scilab.js | 0 .../highlight.js/lib/languages/scss.js | 0 .../highlight.js/lib/languages/smali.js | 0 .../highlight.js/lib/languages/smalltalk.js | 0 .../highlight.js/lib/languages/sml.js | 0 .../highlight.js/lib/languages/sqf.js | 0 .../highlight.js/lib/languages/sql.js | 0 .../highlight.js/lib/languages/stan.js | 0 .../highlight.js/lib/languages/stata.js | 0 .../highlight.js/lib/languages/step21.js | 0 .../highlight.js/lib/languages/stylus.js | 0 .../highlight.js/lib/languages/subunit.js | 0 .../highlight.js/lib/languages/swift.js | 0 .../highlight.js/lib/languages/taggerscript.js | 0 .../highlight.js/lib/languages/tap.js | 0 .../highlight.js/lib/languages/tcl.js | 0 .../highlight.js/lib/languages/tex.js | 0 .../highlight.js/lib/languages/thrift.js | 0 .../highlight.js/lib/languages/tp.js | 0 .../highlight.js/lib/languages/twig.js | 0 .../highlight.js/lib/languages/typescript.js | 0 .../highlight.js/lib/languages/vala.js | 0 .../highlight.js/lib/languages/vbnet.js | 0 .../highlight.js/lib/languages/vbscript-html.js | 0 .../highlight.js/lib/languages/vbscript.js | 0 .../highlight.js/lib/languages/verilog.js | 0 .../highlight.js/lib/languages/vhdl.js | 0 .../highlight.js/lib/languages/vim.js | 0 .../highlight.js/lib/languages/x86asm.js | 0 .../highlight.js/lib/languages/xl.js | 0 .../highlight.js/lib/languages/xml.js | 0 .../highlight.js/lib/languages/xquery.js | 0 .../highlight.js/lib/languages/yaml.js | 0 .../highlight.js/lib/languages/zephir.js | 0 .../node_modules/highlight.js/package.json | 0 .../node_modules/highlight.js/styles/agate.css | 0 .../highlight.js/styles/androidstudio.css | 0 .../highlight.js/styles/arduino-light.css | 0 .../node_modules/highlight.js/styles/arta.css | 0 .../node_modules/highlight.js/styles/ascetic.css | 0 .../highlight.js/styles/atelier-cave-dark.css | 0 .../highlight.js/styles/atelier-cave-light.css | 0 .../highlight.js/styles/atelier-dune-dark.css | 0 .../highlight.js/styles/atelier-dune-light.css | 0 .../highlight.js/styles/atelier-estuary-dark.css | 0 .../styles/atelier-estuary-light.css | 0 .../highlight.js/styles/atelier-forest-dark.css | 0 .../highlight.js/styles/atelier-forest-light.css | 0 .../highlight.js/styles/atelier-heath-dark.css | 0 .../highlight.js/styles/atelier-heath-light.css | 0 .../styles/atelier-lakeside-dark.css | 0 .../styles/atelier-lakeside-light.css | 0 .../highlight.js/styles/atelier-plateau-dark.css | 0 .../styles/atelier-plateau-light.css | 0 .../highlight.js/styles/atelier-savanna-dark.css | 0 .../styles/atelier-savanna-light.css | 0 .../highlight.js/styles/atelier-seaside-dark.css | 0 .../styles/atelier-seaside-light.css | 0 .../styles/atelier-sulphurpool-dark.css | 0 .../styles/atelier-sulphurpool-light.css | 0 .../highlight.js/styles/atom-one-dark.css | 0 .../highlight.js/styles/atom-one-light.css | 0 .../highlight.js/styles/brown-paper.css | 0 .../highlight.js/styles/brown-papersq.png | Bin .../highlight.js/styles/codepen-embed.css | 0 .../highlight.js/styles/color-brewer.css | 0 .../node_modules/highlight.js/styles/darcula.css | 0 .../node_modules/highlight.js/styles/dark.css | 0 .../node_modules/highlight.js/styles/darkula.css | 0 .../node_modules/highlight.js/styles/default.css | 0 .../node_modules/highlight.js/styles/docco.css | 0 .../node_modules/highlight.js/styles/dracula.css | 0 .../node_modules/highlight.js/styles/far.css | 0 .../highlight.js/styles/foundation.css | 0 .../highlight.js/styles/github-gist.css | 0 .../node_modules/highlight.js/styles/github.css | 0 .../highlight.js/styles/googlecode.css | 0 .../highlight.js/styles/grayscale.css | 0 .../highlight.js/styles/gruvbox-dark.css | 0 .../highlight.js/styles/gruvbox-light.css | 0 .../highlight.js/styles/hopscotch.css | 0 .../node_modules/highlight.js/styles/hybrid.css | 0 .../node_modules/highlight.js/styles/idea.css | 0 .../highlight.js/styles/ir-black.css | 0 .../highlight.js/styles/kimbie.dark.css | 0 .../highlight.js/styles/kimbie.light.css | 0 .../node_modules/highlight.js/styles/magula.css | 0 .../highlight.js/styles/mono-blue.css | 0 .../highlight.js/styles/monokai-sublime.css | 0 .../node_modules/highlight.js/styles/monokai.css | 0 .../highlight.js/styles/obsidian.css | 0 .../node_modules/highlight.js/styles/ocean.css | 0 .../highlight.js/styles/paraiso-dark.css | 0 .../highlight.js/styles/paraiso-light.css | 0 .../highlight.js/styles/pojoaque.css | 0 .../highlight.js/styles/pojoaque.jpg | Bin .../highlight.js/styles/purebasic.css | 0 .../highlight.js/styles/qtcreator_dark.css | 0 .../highlight.js/styles/qtcreator_light.css | 0 .../highlight.js/styles/railscasts.css | 0 .../node_modules/highlight.js/styles/rainbow.css | 0 .../highlight.js/styles/school-book.css | 0 .../highlight.js/styles/school-book.png | Bin .../highlight.js/styles/solarized-dark.css | 0 .../highlight.js/styles/solarized-light.css | 0 .../highlight.js/styles/sunburst.css | 0 .../highlight.js/styles/tomorrow-night-blue.css | 0 .../styles/tomorrow-night-bright.css | 0 .../styles/tomorrow-night-eighties.css | 0 .../highlight.js/styles/tomorrow-night.css | 0 .../highlight.js/styles/tomorrow.css | 0 .../node_modules/highlight.js/styles/vs.css | 0 .../node_modules/highlight.js/styles/xcode.css | 0 .../node_modules/highlight.js/styles/xt256.css | 0 .../node_modules/highlight.js/styles/zenburn.css | 0 .../node_modules/jquery.scrollto/.jscsrc | 0 .../node_modules/jquery.scrollto/.jshintrc | 0 .../node_modules/jquery.scrollto/.npmignore | 0 .../node_modules/jquery.scrollto/CHANGELOG.md | 0 .../node_modules/jquery.scrollto/LICENSE | 0 .../node_modules/jquery.scrollto/README.md | 0 .../node_modules/jquery.scrollto/bower.json | 0 .../node_modules/jquery.scrollto/composer.json | 0 .../jquery.scrollto/demo/css/style.css | 0 .../jquery.scrollto/demo/css/style.old.css | 0 .../node_modules/jquery.scrollto/demo/index.html | 0 .../jquery.scrollto/demo/index.old.html | 0 .../jquery.scrollto/jquery.scrollTo.js | 0 .../jquery.scrollto/jquery.scrollTo.min.js | 0 .../node_modules/jquery.scrollto/package.json | 0 .../jquery.scrollto/tests/ElemMaxY-compat.html | 0 .../jquery.scrollto/tests/ElemMaxY-quirks.html | 0 .../jquery.scrollto/tests/WinMaxY-compat.html | 0 .../jquery.scrollto/tests/WinMaxY-quirks.html | 0 .../tests/WinMaxY-to-iframe-compat.html | 0 .../tests/WinMaxY-to-iframe-quirks.html | 0 .../tests/WinMaxY-with-iframe-compat.html | 0 .../tests/WinMaxY-with-iframe-quirks.html | 0 .../jquery.scrollto/tests/index.html | 0 .../node_modules/jquery.scrollto/tests/test.js | 0 .../node_modules/jquery/AUTHORS.txt | 0 .../node_modules/jquery/LICENSE.txt | 0 .../{1_5 => v1.5}/node_modules/jquery/README.md | 0 .../{1_5 => v1.5}/node_modules/jquery/bower.json | 0 .../node_modules/jquery/dist/core.js | 0 .../node_modules/jquery/dist/jquery.js | 0 .../node_modules/jquery/dist/jquery.min.js | 0 .../node_modules/jquery/dist/jquery.min.map | 0 .../node_modules/jquery/dist/jquery.slim.js | 0 .../node_modules/jquery/dist/jquery.slim.min.js | 0 .../node_modules/jquery/dist/jquery.slim.min.map | 0 .../jquery/external/sizzle/LICENSE.txt | 0 .../jquery/external/sizzle/dist/sizzle.js | 0 .../jquery/external/sizzle/dist/sizzle.min.js | 0 .../jquery/external/sizzle/dist/sizzle.min.map | 0 .../node_modules/jquery/package.json | 0 .../node_modules/jquery/src/.eslintrc.json | 0 .../node_modules/jquery/src/ajax.js | 0 .../node_modules/jquery/src/ajax/jsonp.js | 0 .../node_modules/jquery/src/ajax/load.js | 0 .../node_modules/jquery/src/ajax/parseXML.js | 0 .../node_modules/jquery/src/ajax/script.js | 0 .../node_modules/jquery/src/ajax/var/location.js | 0 .../node_modules/jquery/src/ajax/var/nonce.js | 0 .../node_modules/jquery/src/ajax/var/rquery.js | 0 .../node_modules/jquery/src/ajax/xhr.js | 0 .../node_modules/jquery/src/attributes.js | 0 .../node_modules/jquery/src/attributes/attr.js | 0 .../jquery/src/attributes/classes.js | 0 .../node_modules/jquery/src/attributes/prop.js | 0 .../jquery/src/attributes/support.js | 0 .../node_modules/jquery/src/attributes/val.js | 0 .../node_modules/jquery/src/callbacks.js | 0 .../node_modules/jquery/src/core.js | 0 .../node_modules/jquery/src/core/DOMEval.js | 0 .../node_modules/jquery/src/core/access.js | 0 .../node_modules/jquery/src/core/init.js | 0 .../node_modules/jquery/src/core/parseHTML.js | 0 .../jquery/src/core/ready-no-deferred.js | 0 .../node_modules/jquery/src/core/ready.js | 0 .../jquery/src/core/readyException.js | 0 .../jquery/src/core/stripAndCollapse.js | 0 .../node_modules/jquery/src/core/support.js | 0 .../jquery/src/core/var/rsingleTag.js | 0 .../{1_5 => v1.5}/node_modules/jquery/src/css.js | 0 .../node_modules/jquery/src/css/addGetHookIf.js | 0 .../node_modules/jquery/src/css/adjustCSS.js | 0 .../node_modules/jquery/src/css/curCSS.js | 0 .../jquery/src/css/hiddenVisibleSelectors.js | 0 .../node_modules/jquery/src/css/showHide.js | 0 .../node_modules/jquery/src/css/support.js | 0 .../node_modules/jquery/src/css/var/cssExpand.js | 0 .../node_modules/jquery/src/css/var/getStyles.js | 0 .../jquery/src/css/var/isHiddenWithinTree.js | 0 .../node_modules/jquery/src/css/var/rmargin.js | 0 .../node_modules/jquery/src/css/var/rnumnonpx.js | 0 .../node_modules/jquery/src/css/var/swap.js | 0 .../node_modules/jquery/src/data.js | 0 .../node_modules/jquery/src/data/Data.js | 0 .../jquery/src/data/var/acceptData.js | 0 .../node_modules/jquery/src/data/var/dataPriv.js | 0 .../node_modules/jquery/src/data/var/dataUser.js | 0 .../node_modules/jquery/src/deferred.js | 0 .../jquery/src/deferred/exceptionHook.js | 0 .../node_modules/jquery/src/deprecated.js | 0 .../node_modules/jquery/src/dimensions.js | 0 .../node_modules/jquery/src/effects.js | 0 .../node_modules/jquery/src/effects/Tween.js | 0 .../jquery/src/effects/animatedSelector.js | 0 .../node_modules/jquery/src/event.js | 0 .../node_modules/jquery/src/event/ajax.js | 0 .../node_modules/jquery/src/event/alias.js | 0 .../node_modules/jquery/src/event/focusin.js | 0 .../node_modules/jquery/src/event/support.js | 0 .../node_modules/jquery/src/event/trigger.js | 0 .../node_modules/jquery/src/exports/amd.js | 0 .../node_modules/jquery/src/exports/global.js | 0 .../node_modules/jquery/src/jquery.js | 0 .../node_modules/jquery/src/manipulation.js | 0 .../jquery/src/manipulation/_evalUrl.js | 0 .../jquery/src/manipulation/buildFragment.js | 0 .../jquery/src/manipulation/getAll.js | 0 .../jquery/src/manipulation/setGlobalEval.js | 0 .../jquery/src/manipulation/support.js | 0 .../src/manipulation/var/rcheckableType.js | 0 .../jquery/src/manipulation/var/rscriptType.js | 0 .../jquery/src/manipulation/var/rtagName.js | 0 .../jquery/src/manipulation/wrapMap.js | 0 .../node_modules/jquery/src/offset.js | 0 .../node_modules/jquery/src/queue.js | 0 .../node_modules/jquery/src/queue/delay.js | 0 .../node_modules/jquery/src/selector-native.js | 0 .../node_modules/jquery/src/selector-sizzle.js | 0 .../node_modules/jquery/src/selector.js | 0 .../node_modules/jquery/src/serialize.js | 0 .../node_modules/jquery/src/traversing.js | 0 .../jquery/src/traversing/findFilter.js | 0 .../jquery/src/traversing/var/dir.js | 0 .../jquery/src/traversing/var/rneedsContext.js | 0 .../jquery/src/traversing/var/siblings.js | 0 .../jquery/src/var/ObjectFunctionString.js | 0 .../node_modules/jquery/src/var/arr.js | 0 .../node_modules/jquery/src/var/class2type.js | 0 .../node_modules/jquery/src/var/concat.js | 0 .../node_modules/jquery/src/var/document.js | 0 .../jquery/src/var/documentElement.js | 0 .../node_modules/jquery/src/var/fnToString.js | 0 .../node_modules/jquery/src/var/getProto.js | 0 .../node_modules/jquery/src/var/hasOwn.js | 0 .../node_modules/jquery/src/var/indexOf.js | 0 .../node_modules/jquery/src/var/pnum.js | 0 .../node_modules/jquery/src/var/push.js | 0 .../node_modules/jquery/src/var/rcssNum.js | 0 .../node_modules/jquery/src/var/rnothtmlwhite.js | 0 .../node_modules/jquery/src/var/slice.js | 0 .../node_modules/jquery/src/var/support.js | 0 .../node_modules/jquery/src/var/toString.js | 0 .../node_modules/jquery/src/wrap.js | 0 .../{1_5 => v1.5}/node_modules/marked/.npmignore | 0 .../node_modules/marked/Gulpfile.js | 0 .../{1_5 => v1.5}/node_modules/marked/LICENSE | 0 .../{1_5 => v1.5}/node_modules/marked/Makefile | 0 .../{1_5 => v1.5}/node_modules/marked/README.md | 0 .../{1_5 => v1.5}/node_modules/marked/bin/marked | 0 .../{1_5 => v1.5}/node_modules/marked/bower.json | 0 .../node_modules/marked/component.json | 0 .../node_modules/marked/doc/broken.md | 0 .../node_modules/marked/doc/todo.md | 0 .../{1_5 => v1.5}/node_modules/marked/index.js | 0 .../node_modules/marked/lib/marked.js | 0 .../node_modules/marked/man/marked.1 | 0 .../node_modules/marked/marked.min.js | 0 .../node_modules/marked/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/.npmignore | 0 .../{1_5 => v1.5}/node_modules/mime/LICENSE | 0 .../{1_5 => v1.5}/node_modules/mime/README.md | 0 .../node_modules/mime/build/build.js | 0 .../node_modules/mime/build/test.js | 0 .../{1_5 => v1.5}/node_modules/mime/cli.js | 0 .../{1_5 => v1.5}/node_modules/mime/mime.js | 0 .../{1_5 => v1.5}/node_modules/mime/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/types.json | 0 .../{1_5 => v1.5}/node_modules/minimist/LICENSE | 0 .../node_modules/minimist/example/parse.js | 0 .../{1_5 => v1.5}/node_modules/minimist/index.js | 0 .../node_modules/minimist/package.json | 0 .../node_modules/minimist/readme.markdown | 0 .../node_modules/minimist/test/bool.js | 0 .../node_modules/minimist/test/dash.js | 0 .../node_modules/minimist/test/default_bool.js | 0 .../node_modules/minimist/test/dotted.js | 0 .../node_modules/minimist/test/long.js | 0 .../node_modules/minimist/test/num.js | 0 .../node_modules/minimist/test/parse.js | 0 .../node_modules/minimist/test/parse_modified.js | 0 .../node_modules/minimist/test/short.js | 0 .../node_modules/minimist/test/whitespace.js | 0 .../node_modules/node-static/.npmignore | 0 .../node_modules/node-static/LICENSE | 0 .../node_modules/node-static/README.md | 0 .../node-static/benchmark/node-static-0.3.0.txt | 0 .../node_modules/node-static/bin/cli.js | 0 .../node-static/examples/file-server.js | 0 .../node_modules/node-static/lib/node-static.js | 0 .../node-static/lib/node-static/util.js | 0 .../node_modules/node-static/package.json | 0 .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 0 .../node-static/test/fixtures/index.html | 0 .../node-static/test/fixtures/there/index.html | 0 .../test/integration/node-static-test.js | 0 .../{1_5 => v1.5}/node_modules/optimist/LICENSE | 0 .../node_modules/optimist/example/bool.js | 0 .../optimist/example/boolean_double.js | 0 .../optimist/example/boolean_single.js | 0 .../optimist/example/default_hash.js | 0 .../optimist/example/default_singles.js | 0 .../node_modules/optimist/example/divide.js | 0 .../node_modules/optimist/example/line_count.js | 0 .../optimist/example/line_count_options.js | 0 .../optimist/example/line_count_wrap.js | 0 .../node_modules/optimist/example/nonopt.js | 0 .../node_modules/optimist/example/reflect.js | 0 .../node_modules/optimist/example/short.js | 0 .../node_modules/optimist/example/string.js | 0 .../optimist/example/usage-options.js | 0 .../node_modules/optimist/example/xup.js | 0 .../{1_5 => v1.5}/node_modules/optimist/index.js | 0 .../node_modules/optimist/package.json | 0 .../node_modules/optimist/readme.markdown | 0 .../node_modules/optimist/test/_.js | 0 .../node_modules/optimist/test/_/argv.js | 0 .../node_modules/optimist/test/_/bin.js | 0 .../node_modules/optimist/test/dash.js | 0 .../node_modules/optimist/test/parse.js | 0 .../node_modules/optimist/test/parse_modified.js | 0 .../node_modules/optimist/test/short.js | 0 .../node_modules/optimist/test/usage.js | 0 .../node_modules/optimist/test/whitespace.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/LICENSE | 0 .../node_modules/wordwrap/README.markdown | 0 .../node_modules/wordwrap/example/center.js | 0 .../node_modules/wordwrap/example/meat.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/index.js | 0 .../node_modules/wordwrap/package.json | 0 .../node_modules/wordwrap/test/break.js | 0 .../node_modules/wordwrap/test/idleness.txt | 0 .../node_modules/wordwrap/test/wrap.js | 0 docs/api-reference/{1_5 => v1.5}/package.json | 0 docs/api-reference/{1_5 => v1.5}/runbrodocs.sh | 0 docs/api-reference/{1_5 => v1.5}/scroll.js | 0 docs/api-reference/{1_5 => v1.5}/server.js | 0 docs/api-reference/{1_5 => v1.5}/stylesheet.css | 0 .../api-reference/{1_5 => v1.5}/tabvisibility.js | 0 .../node_modules/node-static/.package.json.un~ | Bin 565 -> 0 bytes .../node-static/lib/.node-static.js.un~ | Bin 1018 -> 0 bytes docs/resources-reference/{1_5 => v1.5}/LICENSE | 0 docs/resources-reference/{1_5 => v1.5}/README.md | 0 .../resources-reference/{1_5 => v1.5}/actions.js | 0 docs/resources-reference/{1_5 => v1.5}/brodoc.js | 0 .../{1_5 => v1.5}/documents/_cluster.md | 0 .../{1_5 => v1.5}/documents/_config.md | 0 .../{1_5 => v1.5}/documents/_definitions.md | 0 .../_generated_apigroup_unversioned_concept.md | 0 ..._generated_apigroup_unversioned_definition.md | 0 ...generated_apigrouplist_unversioned_concept.md | 0 ...erated_apigrouplist_unversioned_definition.md | 0 ..._generated_apiresource_unversioned_concept.md | 0 ...nerated_apiresource_unversioned_definition.md | 0 ...erated_apiresourcelist_unversioned_concept.md | 0 ...ted_apiresourcelist_unversioned_definition.md | 0 .../_generated_apiversion_v1beta1_concept.md | 0 .../_generated_apiversion_v1beta1_definition.md | 0 ..._generated_apiversions_unversioned_concept.md | 0 ...nerated_apiversions_unversioned_definition.md | 0 .../_generated_attachedvolume_v1_concept.md | 0 .../_generated_attachedvolume_v1_definition.md | 0 .../documents/_generated_binding_v1_concept.md | 0 .../_generated_binding_v1_definition.md | 0 .../_generated_capabilities_v1_concept.md | 0 .../_generated_capabilities_v1_definition.md | 0 ...certificatesigningrequest_v1alpha1_concept.md | 0 ...tificatesigningrequest_v1alpha1_definition.md | 0 ...tesigningrequestcondition_v1alpha1_concept.md | 0 ...igningrequestcondition_v1alpha1_definition.md | 0 ...ificatesigningrequestlist_v1alpha1_concept.md | 0 ...catesigningrequestlist_v1alpha1_definition.md | 0 ...ificatesigningrequestspec_v1alpha1_concept.md | 0 ...catesigningrequestspec_v1alpha1_definition.md | 0 ...icatesigningrequeststatus_v1alpha1_concept.md | 0 ...tesigningrequeststatus_v1alpha1_definition.md | 0 .../_generated_clusterrole_v1alpha1_concept.md | 0 ..._generated_clusterrole_v1alpha1_definition.md | 0 ...erated_clusterrolebinding_v1alpha1_concept.md | 0 ...ted_clusterrolebinding_v1alpha1_definition.md | 0 ...ed_clusterrolebindinglist_v1alpha1_concept.md | 0 ...clusterrolebindinglist_v1alpha1_definition.md | 0 ...generated_clusterrolelist_v1alpha1_concept.md | 0 ...erated_clusterrolelist_v1alpha1_definition.md | 0 .../_generated_componentcondition_v1_concept.md | 0 ...generated_componentcondition_v1_definition.md | 0 .../_generated_componentstatus_v1_concept.md | 0 .../_generated_componentstatus_v1_definition.md | 0 .../_generated_componentstatuslist_v1_concept.md | 0 ...enerated_componentstatuslist_v1_definition.md | 0 .../documents/_generated_configmap_v1_concept.md | 0 .../_generated_configmap_v1_definition.md | 0 ..._generated_configmapkeyselector_v1_concept.md | 0 ...nerated_configmapkeyselector_v1_definition.md | 0 .../_generated_configmaplist_v1_concept.md | 0 .../_generated_configmaplist_v1_definition.md | 0 .../documents/_generated_container_v1_concept.md | 0 .../_generated_container_v1_definition.md | 0 .../_generated_containerimage_v1_concept.md | 0 .../_generated_containerimage_v1_definition.md | 0 .../_generated_containerport_v1_concept.md | 0 .../_generated_containerport_v1_definition.md | 0 .../_generated_containerstate_v1_concept.md | 0 .../_generated_containerstate_v1_definition.md | 0 ...generated_containerstaterunning_v1_concept.md | 0 ...erated_containerstaterunning_v1_definition.md | 0 ...erated_containerstateterminated_v1_concept.md | 0 ...ted_containerstateterminated_v1_definition.md | 0 ...generated_containerstatewaiting_v1_concept.md | 0 ...erated_containerstatewaiting_v1_definition.md | 0 .../_generated_containerstatus_v1_concept.md | 0 .../_generated_containerstatus_v1_definition.md | 0 ...rated_cputargetutilization_v1beta1_concept.md | 0 ...ed_cputargetutilization_v1beta1_definition.md | 0 .../_generated_cronjob_v2alpha1_concept.md | 0 .../_generated_cronjob_v2alpha1_definition.md | 0 .../_generated_cronjoblist_v2alpha1_concept.md | 0 ..._generated_cronjoblist_v2alpha1_definition.md | 0 .../_generated_cronjobspec_v2alpha1_concept.md | 0 ..._generated_cronjobspec_v2alpha1_definition.md | 0 .../_generated_cronjobstatus_v2alpha1_concept.md | 0 ...enerated_cronjobstatus_v2alpha1_definition.md | 0 ...ted_crossversionobjectreference_v1_concept.md | 0 ..._crossversionobjectreference_v1_definition.md | 0 .../_generated_daemonendpoint_v1_concept.md | 0 .../_generated_daemonendpoint_v1_definition.md | 0 .../_generated_daemonset_v1beta1_concept.md | 0 .../_generated_daemonset_v1beta1_definition.md | 0 .../_generated_daemonsetlist_v1beta1_concept.md | 0 ...generated_daemonsetlist_v1beta1_definition.md | 0 .../_generated_daemonsetspec_v1beta1_concept.md | 0 ...generated_daemonsetspec_v1beta1_definition.md | 0 ..._generated_daemonsetstatus_v1beta1_concept.md | 0 ...nerated_daemonsetstatus_v1beta1_definition.md | 0 .../_generated_deleteoptions_v1_concept.md | 0 .../_generated_deleteoptions_v1_definition.md | 0 .../_generated_deployment_v1beta1_concept.md | 0 .../_generated_deployment_v1beta1_definition.md | 0 ...erated_deploymentcondition_v1beta1_concept.md | 0 ...ted_deploymentcondition_v1beta1_definition.md | 0 .../_generated_deploymentlist_v1beta1_concept.md | 0 ...enerated_deploymentlist_v1beta1_definition.md | 0 ...nerated_deploymentrollback_v1beta1_concept.md | 0 ...ated_deploymentrollback_v1beta1_definition.md | 0 .../_generated_deploymentspec_v1beta1_concept.md | 0 ...enerated_deploymentspec_v1beta1_definition.md | 0 ...generated_deploymentstatus_v1beta1_concept.md | 0 ...erated_deploymentstatus_v1beta1_definition.md | 0 ...nerated_deploymentstrategy_v1beta1_concept.md | 0 ...ated_deploymentstrategy_v1beta1_definition.md | 0 .../_generated_endpointaddress_v1_concept.md | 0 .../_generated_endpointaddress_v1_definition.md | 0 .../_generated_endpointport_v1_concept.md | 0 .../_generated_endpointport_v1_definition.md | 0 .../documents/_generated_endpoints_v1_concept.md | 0 .../_generated_endpoints_v1_definition.md | 0 .../_generated_endpointslist_v1_concept.md | 0 .../_generated_endpointslist_v1_definition.md | 0 .../_generated_endpointsubset_v1_concept.md | 0 .../_generated_endpointsubset_v1_definition.md | 0 .../documents/_generated_envvar_v1_concept.md | 0 .../documents/_generated_envvar_v1_definition.md | 0 .../_generated_envvarsource_v1_concept.md | 0 .../_generated_envvarsource_v1_definition.md | 0 .../documents/_generated_event_v1_concept.md | 0 .../documents/_generated_event_v1_definition.md | 0 .../_generated_event_versioned_concept.md | 0 .../_generated_event_versioned_definition.md | 0 .../documents/_generated_eventlist_v1_concept.md | 0 .../_generated_eventlist_v1_definition.md | 0 .../_generated_eventsource_v1_concept.md | 0 .../_generated_eventsource_v1_definition.md | 0 .../_generated_eviction_v1beta1_concept.md | 0 .../_generated_eviction_v1beta1_definition.md | 0 .../_generated_execaction_v1_concept.md | 0 .../_generated_execaction_v1_definition.md | 0 ...oupversionfordiscovery_unversioned_concept.md | 0 ...versionfordiscovery_unversioned_definition.md | 0 .../documents/_generated_handler_v1_concept.md | 0 .../_generated_handler_v1_definition.md | 0 ...nerated_horizontalpodautoscaler_v1_concept.md | 0 ...ated_horizontalpodautoscaler_v1_definition.md | 0 ...ed_horizontalpodautoscaler_v1beta1_concept.md | 0 ...horizontalpodautoscaler_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerlist_v1_concept.md | 0 ..._horizontalpodautoscalerlist_v1_definition.md | 0 ...orizontalpodautoscalerlist_v1beta1_concept.md | 0 ...zontalpodautoscalerlist_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerspec_v1_concept.md | 0 ..._horizontalpodautoscalerspec_v1_definition.md | 0 ...orizontalpodautoscalerspec_v1beta1_concept.md | 0 ...zontalpodautoscalerspec_v1beta1_definition.md | 0 ...d_horizontalpodautoscalerstatus_v1_concept.md | 0 ...orizontalpodautoscalerstatus_v1_definition.md | 0 ...izontalpodautoscalerstatus_v1beta1_concept.md | 0 ...ntalpodautoscalerstatus_v1beta1_definition.md | 0 .../_generated_httpgetaction_v1_concept.md | 0 .../_generated_httpgetaction_v1_definition.md | 0 .../_generated_httpheader_v1_concept.md | 0 .../_generated_httpheader_v1_definition.md | 0 .../documents/_generated_info_version_concept.md | 0 .../_generated_info_version_definition.md | 0 .../_generated_ingress_v1beta1_concept.md | 0 .../_generated_ingress_v1beta1_definition.md | 0 .../_generated_ingressbackend_v1beta1_concept.md | 0 ...enerated_ingressbackend_v1beta1_definition.md | 0 .../_generated_ingresslist_v1beta1_concept.md | 0 .../_generated_ingresslist_v1beta1_definition.md | 0 .../_generated_ingressrule_v1beta1_concept.md | 0 .../_generated_ingressrule_v1beta1_definition.md | 0 .../_generated_ingressspec_v1beta1_concept.md | 0 .../_generated_ingressspec_v1beta1_definition.md | 0 .../_generated_ingressstatus_v1beta1_concept.md | 0 ...generated_ingressstatus_v1beta1_definition.md | 0 .../_generated_ingresstls_v1beta1_concept.md | 0 .../_generated_ingresstls_v1beta1_definition.md | 0 .../_generated_intorstring_intstr_concept.md | 0 .../_generated_intorstring_intstr_definition.md | 0 .../documents/_generated_job_v1_concept.md | 0 .../documents/_generated_job_v1_definition.md | 0 .../documents/_generated_job_v1beta1_concept.md | 0 .../_generated_job_v1beta1_definition.md | 0 .../documents/_generated_job_v2alpha1_concept.md | 0 .../_generated_job_v2alpha1_definition.md | 0 .../_generated_jobcondition_v1_concept.md | 0 .../_generated_jobcondition_v1_definition.md | 0 .../_generated_jobcondition_v1beta1_concept.md | 0 ..._generated_jobcondition_v1beta1_definition.md | 0 .../_generated_jobcondition_v2alpha1_concept.md | 0 ...generated_jobcondition_v2alpha1_definition.md | 0 .../documents/_generated_joblist_v1_concept.md | 0 .../_generated_joblist_v1_definition.md | 0 .../_generated_joblist_v1beta1_concept.md | 0 .../_generated_joblist_v1beta1_definition.md | 0 .../_generated_joblist_v2alpha1_concept.md | 0 .../_generated_joblist_v2alpha1_definition.md | 0 .../documents/_generated_jobspec_v1_concept.md | 0 .../_generated_jobspec_v1_definition.md | 0 .../_generated_jobspec_v1beta1_concept.md | 0 .../_generated_jobspec_v1beta1_definition.md | 0 .../_generated_jobspec_v2alpha1_concept.md | 0 .../_generated_jobspec_v2alpha1_definition.md | 0 .../documents/_generated_jobstatus_v1_concept.md | 0 .../_generated_jobstatus_v1_definition.md | 0 .../_generated_jobstatus_v1beta1_concept.md | 0 .../_generated_jobstatus_v1beta1_definition.md | 0 .../_generated_jobstatus_v2alpha1_concept.md | 0 .../_generated_jobstatus_v2alpha1_definition.md | 0 ...generated_jobtemplatespec_v2alpha1_concept.md | 0 ...erated_jobtemplatespec_v2alpha1_definition.md | 0 ...enerated_labelselector_unversioned_concept.md | 0 ...rated_labelselector_unversioned_definition.md | 0 ...belselectorrequirement_unversioned_concept.md | 0 ...selectorrequirement_unversioned_definition.md | 0 .../documents/_generated_lifecycle_v1_concept.md | 0 .../_generated_lifecycle_v1_definition.md | 0 .../_generated_limitrange_v1_concept.md | 0 .../_generated_limitrange_v1_definition.md | 0 .../_generated_limitrangeitem_v1_concept.md | 0 .../_generated_limitrangeitem_v1_definition.md | 0 .../_generated_limitrangelist_v1_concept.md | 0 .../_generated_limitrangelist_v1_definition.md | 0 .../_generated_limitrangespec_v1_concept.md | 0 .../_generated_limitrangespec_v1_definition.md | 0 .../_generated_listmeta_unversioned_concept.md | 0 ..._generated_listmeta_unversioned_definition.md | 0 .../_generated_loadbalanceringress_v1_concept.md | 0 ...enerated_loadbalanceringress_v1_definition.md | 0 .../_generated_loadbalancerstatus_v1_concept.md | 0 ...generated_loadbalancerstatus_v1_definition.md | 0 ..._generated_localobjectreference_v1_concept.md | 0 ...nerated_localobjectreference_v1_definition.md | 0 ...d_localsubjectaccessreview_v1beta1_concept.md | 0 ...ocalsubjectaccessreview_v1beta1_definition.md | 0 .../documents/_generated_namespace_v1_concept.md | 0 .../_generated_namespace_v1_definition.md | 0 .../_generated_namespacelist_v1_concept.md | 0 .../_generated_namespacelist_v1_definition.md | 0 .../_generated_namespacespec_v1_concept.md | 0 .../_generated_namespacespec_v1_definition.md | 0 .../_generated_namespacestatus_v1_concept.md | 0 .../_generated_namespacestatus_v1_definition.md | 0 .../_generated_networkpolicy_v1beta1_concept.md | 0 ...generated_networkpolicy_v1beta1_definition.md | 0 ...d_networkpolicyingressrule_v1beta1_concept.md | 0 ...etworkpolicyingressrule_v1beta1_definition.md | 0 ...enerated_networkpolicylist_v1beta1_concept.md | 0 ...rated_networkpolicylist_v1beta1_definition.md | 0 ...enerated_networkpolicypeer_v1beta1_concept.md | 0 ...rated_networkpolicypeer_v1beta1_definition.md | 0 ...enerated_networkpolicyport_v1beta1_concept.md | 0 ...rated_networkpolicyport_v1beta1_definition.md | 0 ...enerated_networkpolicyspec_v1beta1_concept.md | 0 ...rated_networkpolicyspec_v1beta1_definition.md | 0 .../documents/_generated_node_v1_concept.md | 0 .../documents/_generated_node_v1_definition.md | 0 .../_generated_nodeaddress_v1_concept.md | 0 .../_generated_nodeaddress_v1_definition.md | 0 .../_generated_nodecondition_v1_concept.md | 0 .../_generated_nodecondition_v1_definition.md | 0 .../_generated_nodedaemonendpoints_v1_concept.md | 0 ...enerated_nodedaemonendpoints_v1_definition.md | 0 .../documents/_generated_nodelist_v1_concept.md | 0 .../_generated_nodelist_v1_definition.md | 0 .../documents/_generated_nodespec_v1_concept.md | 0 .../_generated_nodespec_v1_definition.md | 0 .../_generated_nodestatus_v1_concept.md | 0 .../_generated_nodestatus_v1_definition.md | 0 .../_generated_nodesysteminfo_v1_concept.md | 0 .../_generated_nodesysteminfo_v1_definition.md | 0 ...ated_nonresourceattributes_v1beta1_concept.md | 0 ...d_nonresourceattributes_v1beta1_definition.md | 0 .../_generated_objectfieldselector_v1_concept.md | 0 ...enerated_objectfieldselector_v1_definition.md | 0 .../_generated_objectmeta_v1_concept.md | 0 .../_generated_objectmeta_v1_definition.md | 0 .../_generated_objectreference_v1_concept.md | 0 .../_generated_objectreference_v1_definition.md | 0 .../_generated_ownerreference_v1_concept.md | 0 .../_generated_ownerreference_v1_definition.md | 0 .../_generated_patch_unversioned_concept.md | 0 .../_generated_patch_unversioned_definition.md | 0 .../_generated_persistentvolume_v1_concept.md | 0 .../_generated_persistentvolume_v1_definition.md | 0 ...generated_persistentvolumeclaim_v1_concept.md | 0 ...erated_persistentvolumeclaim_v1_definition.md | 0 ...rated_persistentvolumeclaimlist_v1_concept.md | 0 ...ed_persistentvolumeclaimlist_v1_definition.md | 0 ...rated_persistentvolumeclaimspec_v1_concept.md | 0 ...ed_persistentvolumeclaimspec_v1_definition.md | 0 ...ted_persistentvolumeclaimstatus_v1_concept.md | 0 ..._persistentvolumeclaimstatus_v1_definition.md | 0 ..._generated_persistentvolumelist_v1_concept.md | 0 ...nerated_persistentvolumelist_v1_definition.md | 0 ..._generated_persistentvolumespec_v1_concept.md | 0 ...nerated_persistentvolumespec_v1_definition.md | 0 ...enerated_persistentvolumestatus_v1_concept.md | 0 ...rated_persistentvolumestatus_v1_definition.md | 0 .../documents/_generated_pod_v1_concept.md | 0 .../documents/_generated_pod_v1_definition.md | 0 .../_generated_podcondition_v1_concept.md | 0 .../_generated_podcondition_v1_definition.md | 0 ...erated_poddisruptionbudget_v1beta1_concept.md | 0 ...ted_poddisruptionbudget_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetlist_v1beta1_concept.md | 0 ...poddisruptionbudgetlist_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetspec_v1beta1_concept.md | 0 ...poddisruptionbudgetspec_v1beta1_definition.md | 0 ..._poddisruptionbudgetstatus_v1beta1_concept.md | 0 ...ddisruptionbudgetstatus_v1beta1_definition.md | 0 .../documents/_generated_podlist_v1_concept.md | 0 .../_generated_podlist_v1_definition.md | 0 .../_generated_podsecuritycontext_v1_concept.md | 0 ...generated_podsecuritycontext_v1_definition.md | 0 .../documents/_generated_podspec_v1_concept.md | 0 .../_generated_podspec_v1_definition.md | 0 .../documents/_generated_podstatus_v1_concept.md | 0 .../_generated_podstatus_v1_definition.md | 0 .../_generated_podtemplate_v1_concept.md | 0 .../_generated_podtemplate_v1_definition.md | 0 .../_generated_podtemplatelist_v1_concept.md | 0 .../_generated_podtemplatelist_v1_definition.md | 0 .../_generated_podtemplatespec_v1_concept.md | 0 .../_generated_podtemplatespec_v1_definition.md | 0 .../_generated_policyrule_v1alpha1_concept.md | 0 .../_generated_policyrule_v1alpha1_definition.md | 0 .../_generated_preconditions_v1_concept.md | 0 .../_generated_preconditions_v1_definition.md | 0 .../documents/_generated_probe_v1_concept.md | 0 .../documents/_generated_probe_v1_definition.md | 0 .../_generated_quantity_resource_concept.md | 0 .../_generated_quantity_resource_definition.md | 0 .../_generated_rawextension_runtime_concept.md | 0 ..._generated_rawextension_runtime_definition.md | 0 .../_generated_replicaset_v1beta1_concept.md | 0 .../_generated_replicaset_v1beta1_definition.md | 0 ...erated_replicasetcondition_v1beta1_concept.md | 0 ...ted_replicasetcondition_v1beta1_definition.md | 0 .../_generated_replicasetlist_v1beta1_concept.md | 0 ...enerated_replicasetlist_v1beta1_definition.md | 0 .../_generated_replicasetspec_v1beta1_concept.md | 0 ...enerated_replicasetspec_v1beta1_definition.md | 0 ...generated_replicasetstatus_v1beta1_concept.md | 0 ...erated_replicasetstatus_v1beta1_definition.md | 0 ...generated_replicationcontroller_v1_concept.md | 0 ...erated_replicationcontroller_v1_definition.md | 0 ..._replicationcontrollercondition_v1_concept.md | 0 ...plicationcontrollercondition_v1_definition.md | 0 ...rated_replicationcontrollerlist_v1_concept.md | 0 ...ed_replicationcontrollerlist_v1_definition.md | 0 ...rated_replicationcontrollerspec_v1_concept.md | 0 ...ed_replicationcontrollerspec_v1_definition.md | 0 ...ted_replicationcontrollerstatus_v1_concept.md | 0 ..._replicationcontrollerstatus_v1_definition.md | 0 ...nerated_resourceattributes_v1beta1_concept.md | 0 ...ated_resourceattributes_v1beta1_definition.md | 0 ...generated_resourcefieldselector_v1_concept.md | 0 ...erated_resourcefieldselector_v1_definition.md | 0 .../_generated_resourcequota_v1_concept.md | 0 .../_generated_resourcequota_v1_definition.md | 0 .../_generated_resourcequotalist_v1_concept.md | 0 ..._generated_resourcequotalist_v1_definition.md | 0 .../_generated_resourcequotaspec_v1_concept.md | 0 ..._generated_resourcequotaspec_v1_definition.md | 0 .../_generated_resourcequotastatus_v1_concept.md | 0 ...enerated_resourcequotastatus_v1_definition.md | 0 ..._generated_resourcerequirements_v1_concept.md | 0 ...nerated_resourcerequirements_v1_definition.md | 0 .../_generated_role_v1alpha1_concept.md | 0 .../_generated_role_v1alpha1_definition.md | 0 .../_generated_rolebinding_v1alpha1_concept.md | 0 ..._generated_rolebinding_v1alpha1_definition.md | 0 ...generated_rolebindinglist_v1alpha1_concept.md | 0 ...erated_rolebindinglist_v1alpha1_definition.md | 0 .../_generated_rolelist_v1alpha1_concept.md | 0 .../_generated_rolelist_v1alpha1_definition.md | 0 .../_generated_roleref_v1alpha1_concept.md | 0 .../_generated_roleref_v1alpha1_definition.md | 0 .../_generated_rollbackconfig_v1beta1_concept.md | 0 ...enerated_rollbackconfig_v1beta1_definition.md | 0 ...ed_rollingupdatedeployment_v1beta1_concept.md | 0 ...rollingupdatedeployment_v1beta1_definition.md | 0 .../documents/_generated_scale_v1_concept.md | 0 .../documents/_generated_scale_v1_definition.md | 0 .../_generated_scale_v1beta1_concept.md | 0 .../_generated_scale_v1beta1_definition.md | 0 .../documents/_generated_scalespec_v1_concept.md | 0 .../_generated_scalespec_v1_definition.md | 0 .../_generated_scalespec_v1beta1_concept.md | 0 .../_generated_scalespec_v1beta1_definition.md | 0 .../_generated_scalestatus_v1_concept.md | 0 .../_generated_scalestatus_v1_definition.md | 0 .../_generated_scalestatus_v1beta1_concept.md | 0 .../_generated_scalestatus_v1beta1_definition.md | 0 .../documents/_generated_secret_v1_concept.md | 0 .../documents/_generated_secret_v1_definition.md | 0 .../_generated_secretkeyselector_v1_concept.md | 0 ..._generated_secretkeyselector_v1_definition.md | 0 .../_generated_secretlist_v1_concept.md | 0 .../_generated_secretlist_v1_definition.md | 0 .../_generated_securitycontext_v1_concept.md | 0 .../_generated_securitycontext_v1_definition.md | 0 ...ed_selfsubjectaccessreview_v1beta1_concept.md | 0 ...selfsubjectaccessreview_v1beta1_definition.md | 0 ...elfsubjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 .../_generated_selinuxoptions_v1_concept.md | 0 .../_generated_selinuxoptions_v1_definition.md | 0 ...veraddressbyclientcidr_unversioned_concept.md | 0 ...addressbyclientcidr_unversioned_definition.md | 0 .../documents/_generated_service_v1_concept.md | 0 .../_generated_service_v1_definition.md | 0 .../_generated_serviceaccount_v1_concept.md | 0 .../_generated_serviceaccount_v1_definition.md | 0 .../_generated_serviceaccountlist_v1_concept.md | 0 ...generated_serviceaccountlist_v1_definition.md | 0 .../_generated_servicelist_v1_concept.md | 0 .../_generated_servicelist_v1_definition.md | 0 .../_generated_serviceport_v1_concept.md | 0 .../_generated_serviceport_v1_definition.md | 0 .../_generated_servicespec_v1_concept.md | 0 .../_generated_servicespec_v1_definition.md | 0 .../_generated_servicestatus_v1_concept.md | 0 .../_generated_servicestatus_v1_definition.md | 0 .../_generated_statefulset_v1beta1_concept.md | 0 .../_generated_statefulset_v1beta1_definition.md | 0 ..._generated_statefulsetlist_v1beta1_concept.md | 0 ...nerated_statefulsetlist_v1beta1_definition.md | 0 ..._generated_statefulsetspec_v1beta1_concept.md | 0 ...nerated_statefulsetspec_v1beta1_definition.md | 0 ...enerated_statefulsetstatus_v1beta1_concept.md | 0 ...rated_statefulsetstatus_v1beta1_definition.md | 0 .../_generated_status_unversioned_concept.md | 0 .../_generated_status_unversioned_definition.md | 0 ..._generated_statuscause_unversioned_concept.md | 0 ...nerated_statuscause_unversioned_definition.md | 0 ...enerated_statusdetails_unversioned_concept.md | 0 ...rated_statusdetails_unversioned_definition.md | 0 .../_generated_storageclass_v1beta1_concept.md | 0 ..._generated_storageclass_v1beta1_definition.md | 0 ...generated_storageclasslist_v1beta1_concept.md | 0 ...erated_storageclasslist_v1beta1_definition.md | 0 .../_generated_subject_v1alpha1_concept.md | 0 .../_generated_subject_v1alpha1_definition.md | 0 ...erated_subjectaccessreview_v1beta1_concept.md | 0 ...ted_subjectaccessreview_v1beta1_definition.md | 0 ...ed_subjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 ..._subjectaccessreviewstatus_v1beta1_concept.md | 0 ...bjectaccessreviewstatus_v1beta1_definition.md | 0 ...rated_subresourcereference_v1beta1_concept.md | 0 ...ed_subresourcereference_v1beta1_definition.md | 0 .../_generated_tcpsocketaction_v1_concept.md | 0 .../_generated_tcpsocketaction_v1_definition.md | 0 ...nerated_thirdpartyresource_v1beta1_concept.md | 0 ...ated_thirdpartyresource_v1beta1_definition.md | 0 ...ted_thirdpartyresourcelist_v1beta1_concept.md | 0 ..._thirdpartyresourcelist_v1beta1_definition.md | 0 .../_generated_time_unversioned_concept.md | 0 .../_generated_time_unversioned_definition.md | 0 .../_generated_tokenreview_v1beta1_concept.md | 0 .../_generated_tokenreview_v1beta1_definition.md | 0 ..._generated_tokenreviewspec_v1beta1_concept.md | 0 ...nerated_tokenreviewspec_v1beta1_definition.md | 0 ...enerated_tokenreviewstatus_v1beta1_concept.md | 0 ...rated_tokenreviewstatus_v1beta1_definition.md | 0 .../_generated_userinfo_v1beta1_concept.md | 0 .../_generated_userinfo_v1beta1_definition.md | 0 .../documents/_generated_volume_v1_concept.md | 0 .../documents/_generated_volume_v1_definition.md | 0 .../_generated_volumemount_v1_concept.md | 0 .../_generated_volumemount_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_meta.md | 0 .../{1_5 => v1.5}/documents/_oldversions.md | 0 .../{1_5 => v1.5}/documents/_overview.md | 0 .../{1_5 => v1.5}/documents/_servicediscovery.md | 0 .../{1_5 => v1.5}/documents/_workloads.md | 0 .../documents/deployment-original.md | 0 .../{1_5 => v1.5}/documents/deployment.md | 0 .../resources-reference/{1_5 => v1.5}/index.html | 0 .../{1_5 => v1.5}/jsconfig.json | 0 .../{1_5 => v1.5}/manifest.json | 0 .../{1_5 => v1.5}/markedDecorations.js | 0 .../resources-reference/{1_5 => v1.5}/navData.js | 0 .../{1_5 => v1.5}/node_modules/.bin/marked | 0 .../{1_5 => v1.5}/node_modules/.bin/mime | 0 .../{1_5 => v1.5}/node_modules/.bin/static | 0 .../node_modules/bootstrap/CHANGELOG.md | 0 .../node_modules/bootstrap/Gruntfile.js | 0 .../{1_5 => v1.5}/node_modules/bootstrap/LICENSE | 0 .../node_modules/bootstrap/README.md | 0 .../bootstrap/dist/css/bootstrap-theme.css | 0 .../bootstrap/dist/css/bootstrap-theme.css.map | 0 .../bootstrap/dist/css/bootstrap-theme.min.css | 0 .../dist/css/bootstrap-theme.min.css.map | 0 .../bootstrap/dist/css/bootstrap.css | 0 .../bootstrap/dist/css/bootstrap.css.map | 0 .../bootstrap/dist/css/bootstrap.min.css | 0 .../bootstrap/dist/css/bootstrap.min.css.map | 0 .../dist/fonts/glyphicons-halflings-regular.eot | Bin .../dist/fonts/glyphicons-halflings-regular.svg | 0 .../dist/fonts/glyphicons-halflings-regular.ttf | Bin .../dist/fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/dist/js/bootstrap.js | 0 .../bootstrap/dist/js/bootstrap.min.js | 0 .../node_modules/bootstrap/dist/js/npm.js | 0 .../fonts/glyphicons-halflings-regular.eot | Bin .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | Bin .../fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/grunt/.jshintrc | 0 .../bootstrap/grunt/bs-commonjs-generator.js | 0 .../grunt/bs-glyphicons-data-generator.js | 0 .../bootstrap/grunt/bs-lessdoc-parser.js | 0 .../bootstrap/grunt/bs-raw-files-generator.js | 0 .../bootstrap/grunt/change-version.js | 0 .../bootstrap/grunt/configBridge.json | 0 .../bootstrap/grunt/npm-shrinkwrap.json | 0 .../bootstrap/grunt/sauce_browsers.yml | 0 .../node_modules/bootstrap/js/affix.js | 0 .../node_modules/bootstrap/js/alert.js | 0 .../node_modules/bootstrap/js/button.js | 0 .../node_modules/bootstrap/js/carousel.js | 0 .../node_modules/bootstrap/js/collapse.js | 0 .../node_modules/bootstrap/js/dropdown.js | 0 .../node_modules/bootstrap/js/modal.js | 0 .../node_modules/bootstrap/js/popover.js | 0 .../node_modules/bootstrap/js/scrollspy.js | 0 .../node_modules/bootstrap/js/tab.js | 0 .../node_modules/bootstrap/js/tooltip.js | 0 .../node_modules/bootstrap/js/transition.js | 0 .../node_modules/bootstrap/less/alerts.less | 0 .../node_modules/bootstrap/less/badges.less | 0 .../node_modules/bootstrap/less/bootstrap.less | 0 .../node_modules/bootstrap/less/breadcrumbs.less | 0 .../bootstrap/less/button-groups.less | 0 .../node_modules/bootstrap/less/buttons.less | 0 .../node_modules/bootstrap/less/carousel.less | 0 .../node_modules/bootstrap/less/close.less | 0 .../node_modules/bootstrap/less/code.less | 0 .../bootstrap/less/component-animations.less | 0 .../node_modules/bootstrap/less/dropdowns.less | 0 .../node_modules/bootstrap/less/forms.less | 0 .../node_modules/bootstrap/less/glyphicons.less | 0 .../node_modules/bootstrap/less/grid.less | 0 .../bootstrap/less/input-groups.less | 0 .../node_modules/bootstrap/less/jumbotron.less | 0 .../node_modules/bootstrap/less/labels.less | 0 .../node_modules/bootstrap/less/list-group.less | 0 .../node_modules/bootstrap/less/media.less | 0 .../node_modules/bootstrap/less/mixins.less | 0 .../bootstrap/less/mixins/alerts.less | 0 .../less/mixins/background-variant.less | 0 .../bootstrap/less/mixins/border-radius.less | 0 .../bootstrap/less/mixins/buttons.less | 0 .../bootstrap/less/mixins/center-block.less | 0 .../bootstrap/less/mixins/clearfix.less | 0 .../bootstrap/less/mixins/forms.less | 0 .../bootstrap/less/mixins/gradients.less | 0 .../bootstrap/less/mixins/grid-framework.less | 0 .../node_modules/bootstrap/less/mixins/grid.less | 0 .../bootstrap/less/mixins/hide-text.less | 0 .../bootstrap/less/mixins/image.less | 0 .../bootstrap/less/mixins/labels.less | 0 .../bootstrap/less/mixins/list-group.less | 0 .../bootstrap/less/mixins/nav-divider.less | 0 .../less/mixins/nav-vertical-align.less | 0 .../bootstrap/less/mixins/opacity.less | 0 .../bootstrap/less/mixins/pagination.less | 0 .../bootstrap/less/mixins/panels.less | 0 .../bootstrap/less/mixins/progress-bar.less | 0 .../bootstrap/less/mixins/reset-filter.less | 0 .../bootstrap/less/mixins/reset-text.less | 0 .../bootstrap/less/mixins/resize.less | 0 .../less/mixins/responsive-visibility.less | 0 .../node_modules/bootstrap/less/mixins/size.less | 0 .../bootstrap/less/mixins/tab-focus.less | 0 .../bootstrap/less/mixins/table-row.less | 0 .../bootstrap/less/mixins/text-emphasis.less | 0 .../bootstrap/less/mixins/text-overflow.less | 0 .../bootstrap/less/mixins/vendor-prefixes.less | 0 .../node_modules/bootstrap/less/modals.less | 0 .../node_modules/bootstrap/less/navbar.less | 0 .../node_modules/bootstrap/less/navs.less | 0 .../node_modules/bootstrap/less/normalize.less | 0 .../node_modules/bootstrap/less/pager.less | 0 .../node_modules/bootstrap/less/pagination.less | 0 .../node_modules/bootstrap/less/panels.less | 0 .../node_modules/bootstrap/less/popovers.less | 0 .../node_modules/bootstrap/less/print.less | 0 .../bootstrap/less/progress-bars.less | 0 .../bootstrap/less/responsive-embed.less | 0 .../bootstrap/less/responsive-utilities.less | 0 .../node_modules/bootstrap/less/scaffolding.less | 0 .../node_modules/bootstrap/less/tables.less | 0 .../node_modules/bootstrap/less/theme.less | 0 .../node_modules/bootstrap/less/thumbnails.less | 0 .../node_modules/bootstrap/less/tooltip.less | 0 .../node_modules/bootstrap/less/type.less | 0 .../node_modules/bootstrap/less/utilities.less | 0 .../node_modules/bootstrap/less/variables.less | 0 .../node_modules/bootstrap/less/wells.less | 0 .../node_modules/bootstrap/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/LICENSE | 0 .../{1_5 => v1.5}/node_modules/colors/ReadMe.md | 0 .../node_modules/colors/examples/normal-usage.js | 0 .../node_modules/colors/examples/safe-string.js | 0 .../node_modules/colors/lib/colors.js | 0 .../node_modules/colors/lib/custom/trap.js | 0 .../node_modules/colors/lib/custom/zalgo.js | 0 .../colors/lib/extendStringPrototype.js | 0 .../node_modules/colors/lib/index.js | 0 .../node_modules/colors/lib/maps/america.js | 0 .../node_modules/colors/lib/maps/rainbow.js | 0 .../node_modules/colors/lib/maps/random.js | 0 .../node_modules/colors/lib/maps/zebra.js | 0 .../node_modules/colors/lib/styles.js | 0 .../colors/lib/system/supports-colors.js | 0 .../node_modules/colors/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/safe.js | 0 .../colors/themes/generic-logging.js | 0 .../{1_5 => v1.5}/node_modules/ejs/Jakefile | 0 .../{1_5 => v1.5}/node_modules/ejs/LICENSE | 0 .../{1_5 => v1.5}/node_modules/ejs/README.md | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.min.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/utils.js | 0 .../{1_5 => v1.5}/node_modules/ejs/package.json | 0 .../{1_5 => v1.5}/node_modules/ejs/test/ejs.js | 0 .../node_modules/ejs/test/fixtures/backslash.ejs | 0 .../ejs/test/fixtures/backslash.html | 0 .../node_modules/ejs/test/fixtures/comments.ejs | 0 .../node_modules/ejs/test/fixtures/comments.html | 0 .../ejs/test/fixtures/consecutive-tags.ejs | 0 .../ejs/test/fixtures/consecutive-tags.html | 0 .../ejs/test/fixtures/double-quote.ejs | 0 .../ejs/test/fixtures/double-quote.html | 0 .../node_modules/ejs/test/fixtures/error.ejs | 0 .../node_modules/ejs/test/fixtures/error.out | 0 .../node_modules/ejs/test/fixtures/fail.ejs | 0 .../ejs/test/fixtures/hello-world.ejs | 0 .../ejs/test/fixtures/include-abspath.ejs | 0 .../ejs/test/fixtures/include-root.ejs | 0 .../ejs/test/fixtures/include-simple.ejs | 0 .../ejs/test/fixtures/include-simple.html | 0 .../ejs/test/fixtures/include.css.ejs | 0 .../ejs/test/fixtures/include.css.html | 0 .../node_modules/ejs/test/fixtures/include.ejs | 0 .../node_modules/ejs/test/fixtures/include.html | 0 .../ejs/test/fixtures/include_cache.ejs | 0 .../ejs/test/fixtures/include_cache.html | 0 .../test/fixtures/include_preprocessor.css.ejs | 0 .../test/fixtures/include_preprocessor.css.html | 0 .../ejs/test/fixtures/include_preprocessor.ejs | 0 .../ejs/test/fixtures/include_preprocessor.html | 0 .../test/fixtures/include_preprocessor_cache.ejs | 0 .../fixtures/include_preprocessor_cache.html | 0 .../fixtures/include_preprocessor_line_slurp.ejs | 0 .../include_preprocessor_line_slurp.html | 0 .../include_preprocessor_line_slurp_child.ejs | 0 .../ejs/test/fixtures/includes/bom.ejs | 0 .../ejs/test/fixtures/includes/menu-item.ejs | 0 .../ejs/test/fixtures/includes/menu/item.ejs | 0 .../node_modules/ejs/test/fixtures/literal.ejs | 0 .../node_modules/ejs/test/fixtures/literal.html | 0 .../node_modules/ejs/test/fixtures/menu.ejs | 0 .../node_modules/ejs/test/fixtures/menu.html | 0 .../ejs/test/fixtures/menu_preprocessor.ejs | 0 .../ejs/test/fixtures/menu_preprocessor.html | 0 .../node_modules/ejs/test/fixtures/menu_var.ejs | 0 .../node_modules/ejs/test/fixtures/messed.ejs | 0 .../node_modules/ejs/test/fixtures/messed.html | 0 .../node_modules/ejs/test/fixtures/newlines.ejs | 0 .../node_modules/ejs/test/fixtures/newlines.html | 0 .../ejs/test/fixtures/newlines.mixed.ejs | 0 .../ejs/test/fixtures/newlines.mixed.html | 0 .../ejs/test/fixtures/no.newlines.ejs | 0 .../ejs/test/fixtures/no.newlines.error.ejs | 0 .../ejs/test/fixtures/no.newlines.html | 0 .../ejs/test/fixtures/no.semicolons.ejs | 0 .../ejs/test/fixtures/no.semicolons.html | 0 .../node_modules/ejs/test/fixtures/para.ejs | 0 .../node_modules/ejs/test/fixtures/pet.ejs | 0 .../ejs/test/fixtures/rmWhitespace.ejs | 0 .../ejs/test/fixtures/rmWhitespace.html | 0 .../ejs/test/fixtures/single-quote.ejs | 0 .../ejs/test/fixtures/single-quote.html | 0 .../ejs/test/fixtures/space-and-tab-slurp.ejs | 0 .../ejs/test/fixtures/space-and-tab-slurp.html | 0 .../node_modules/ejs/test/fixtures/strict.ejs | 0 .../node_modules/ejs/test/fixtures/style.css | 0 .../ejs/test/fixtures/user-no-with.ejs | 0 .../node_modules/ejs/test/fixtures/user.ejs | 0 .../ejs/test/fixtures/with-context.ejs | 0 .../node_modules/ejs/test/mocha.opts | 0 .../node_modules/ejs/test/tmp/include.ejs | 0 .../ejs/test/tmp/include_preprocessor.ejs | 0 .../node_modules/ejs/test/tmp/renderFile.ejs | 0 .../node_modules/font-awesome/.npmignore | 0 .../node_modules/font-awesome/HELP-US-OUT.txt | 0 .../node_modules/font-awesome/README.md | 0 .../font-awesome/css/font-awesome.css | 0 .../font-awesome/css/font-awesome.css.map | 0 .../font-awesome/css/font-awesome.min.css | 0 .../font-awesome/fonts/FontAwesome.otf | Bin .../font-awesome/fonts/fontawesome-webfont.eot | Bin .../font-awesome/fonts/fontawesome-webfont.svg | 0 .../font-awesome/fonts/fontawesome-webfont.ttf | Bin .../font-awesome/fonts/fontawesome-webfont.woff | Bin .../font-awesome/fonts/fontawesome-webfont.woff2 | Bin .../node_modules/font-awesome/less/animated.less | 0 .../font-awesome/less/bordered-pulled.less | 0 .../node_modules/font-awesome/less/core.less | 0 .../font-awesome/less/fixed-width.less | 0 .../font-awesome/less/font-awesome.less | 0 .../node_modules/font-awesome/less/icons.less | 0 .../node_modules/font-awesome/less/larger.less | 0 .../node_modules/font-awesome/less/list.less | 0 .../node_modules/font-awesome/less/mixins.less | 0 .../node_modules/font-awesome/less/path.less | 0 .../font-awesome/less/rotated-flipped.less | 0 .../font-awesome/less/screen-reader.less | 0 .../node_modules/font-awesome/less/stacked.less | 0 .../font-awesome/less/variables.less | 0 .../node_modules/font-awesome/package.json | 0 .../font-awesome/scss/_animated.scss | 0 .../font-awesome/scss/_bordered-pulled.scss | 0 .../node_modules/font-awesome/scss/_core.scss | 0 .../font-awesome/scss/_fixed-width.scss | 0 .../node_modules/font-awesome/scss/_icons.scss | 0 .../node_modules/font-awesome/scss/_larger.scss | 0 .../node_modules/font-awesome/scss/_list.scss | 0 .../node_modules/font-awesome/scss/_mixins.scss | 0 .../node_modules/font-awesome/scss/_path.scss | 0 .../font-awesome/scss/_rotated-flipped.scss | 0 .../font-awesome/scss/_screen-reader.scss | 0 .../node_modules/font-awesome/scss/_stacked.scss | 0 .../font-awesome/scss/_variables.scss | 0 .../font-awesome/scss/font-awesome.scss | 0 .../node_modules/highlight.js/LICENSE | 0 .../node_modules/highlight.js/README.md | 0 .../node_modules/highlight.js/docs/api.rst | 0 .../highlight.js/docs/building-testing.rst | 0 .../highlight.js/docs/css-classes-reference.rst | 0 .../node_modules/highlight.js/docs/index.rst | 0 .../highlight.js/docs/language-contribution.rst | 0 .../highlight.js/docs/language-guide.rst | 0 .../highlight.js/docs/language-requests.rst | 0 .../highlight.js/docs/line-numbers.rst | 0 .../node_modules/highlight.js/docs/reference.rst | 0 .../highlight.js/docs/release-process.rst | 0 .../highlight.js/docs/style-guide.rst | 0 .../node_modules/highlight.js/lib/highlight.js | 0 .../node_modules/highlight.js/lib/index.js | 0 .../highlight.js/lib/languages/1c.js | 0 .../highlight.js/lib/languages/abnf.js | 0 .../highlight.js/lib/languages/accesslog.js | 0 .../highlight.js/lib/languages/actionscript.js | 0 .../highlight.js/lib/languages/ada.js | 0 .../highlight.js/lib/languages/apache.js | 0 .../highlight.js/lib/languages/applescript.js | 0 .../highlight.js/lib/languages/arduino.js | 0 .../highlight.js/lib/languages/armasm.js | 0 .../highlight.js/lib/languages/asciidoc.js | 0 .../highlight.js/lib/languages/aspectj.js | 0 .../highlight.js/lib/languages/autohotkey.js | 0 .../highlight.js/lib/languages/autoit.js | 0 .../highlight.js/lib/languages/avrasm.js | 0 .../highlight.js/lib/languages/awk.js | 0 .../highlight.js/lib/languages/axapta.js | 0 .../highlight.js/lib/languages/bash.js | 0 .../highlight.js/lib/languages/basic.js | 0 .../highlight.js/lib/languages/bnf.js | 0 .../highlight.js/lib/languages/brainfuck.js | 0 .../highlight.js/lib/languages/cal.js | 0 .../highlight.js/lib/languages/capnproto.js | 0 .../highlight.js/lib/languages/ceylon.js | 0 .../highlight.js/lib/languages/clean.js | 0 .../highlight.js/lib/languages/clojure-repl.js | 0 .../highlight.js/lib/languages/clojure.js | 0 .../highlight.js/lib/languages/cmake.js | 0 .../highlight.js/lib/languages/coffeescript.js | 0 .../highlight.js/lib/languages/coq.js | 0 .../highlight.js/lib/languages/cos.js | 0 .../highlight.js/lib/languages/cpp.js | 0 .../highlight.js/lib/languages/crmsh.js | 0 .../highlight.js/lib/languages/crystal.js | 0 .../highlight.js/lib/languages/cs.js | 0 .../highlight.js/lib/languages/csp.js | 0 .../highlight.js/lib/languages/css.js | 0 .../node_modules/highlight.js/lib/languages/d.js | 0 .../highlight.js/lib/languages/dart.js | 0 .../highlight.js/lib/languages/delphi.js | 0 .../highlight.js/lib/languages/diff.js | 0 .../highlight.js/lib/languages/django.js | 0 .../highlight.js/lib/languages/dns.js | 0 .../highlight.js/lib/languages/dockerfile.js | 0 .../highlight.js/lib/languages/dos.js | 0 .../highlight.js/lib/languages/dsconfig.js | 0 .../highlight.js/lib/languages/dts.js | 0 .../highlight.js/lib/languages/dust.js | 0 .../highlight.js/lib/languages/ebnf.js | 0 .../highlight.js/lib/languages/elixir.js | 0 .../highlight.js/lib/languages/elm.js | 0 .../highlight.js/lib/languages/erb.js | 0 .../highlight.js/lib/languages/erlang-repl.js | 0 .../highlight.js/lib/languages/erlang.js | 0 .../highlight.js/lib/languages/excel.js | 0 .../highlight.js/lib/languages/fix.js | 0 .../highlight.js/lib/languages/flix.js | 0 .../highlight.js/lib/languages/fortran.js | 0 .../highlight.js/lib/languages/fsharp.js | 0 .../highlight.js/lib/languages/gams.js | 0 .../highlight.js/lib/languages/gauss.js | 0 .../highlight.js/lib/languages/gcode.js | 0 .../highlight.js/lib/languages/gherkin.js | 0 .../highlight.js/lib/languages/glsl.js | 0 .../highlight.js/lib/languages/go.js | 0 .../highlight.js/lib/languages/golo.js | 0 .../highlight.js/lib/languages/gradle.js | 0 .../highlight.js/lib/languages/groovy.js | 0 .../highlight.js/lib/languages/haml.js | 0 .../highlight.js/lib/languages/handlebars.js | 0 .../highlight.js/lib/languages/haskell.js | 0 .../highlight.js/lib/languages/haxe.js | 0 .../highlight.js/lib/languages/hsp.js | 0 .../highlight.js/lib/languages/htmlbars.js | 0 .../highlight.js/lib/languages/http.js | 0 .../highlight.js/lib/languages/inform7.js | 0 .../highlight.js/lib/languages/ini.js | 0 .../highlight.js/lib/languages/irpf90.js | 0 .../highlight.js/lib/languages/java.js | 0 .../highlight.js/lib/languages/javascript.js | 0 .../highlight.js/lib/languages/json.js | 0 .../highlight.js/lib/languages/julia.js | 0 .../highlight.js/lib/languages/kotlin.js | 0 .../highlight.js/lib/languages/lasso.js | 0 .../highlight.js/lib/languages/ldif.js | 0 .../highlight.js/lib/languages/less.js | 0 .../highlight.js/lib/languages/lisp.js | 0 .../highlight.js/lib/languages/livecodeserver.js | 0 .../highlight.js/lib/languages/livescript.js | 0 .../highlight.js/lib/languages/llvm.js | 0 .../highlight.js/lib/languages/lsl.js | 0 .../highlight.js/lib/languages/lua.js | 0 .../highlight.js/lib/languages/makefile.js | 0 .../highlight.js/lib/languages/markdown.js | 0 .../highlight.js/lib/languages/mathematica.js | 0 .../highlight.js/lib/languages/matlab.js | 0 .../highlight.js/lib/languages/maxima.js | 0 .../highlight.js/lib/languages/mel.js | 0 .../highlight.js/lib/languages/mercury.js | 0 .../highlight.js/lib/languages/mipsasm.js | 0 .../highlight.js/lib/languages/mizar.js | 0 .../highlight.js/lib/languages/mojolicious.js | 0 .../highlight.js/lib/languages/monkey.js | 0 .../highlight.js/lib/languages/moonscript.js | 0 .../highlight.js/lib/languages/nginx.js | 0 .../highlight.js/lib/languages/nimrod.js | 0 .../highlight.js/lib/languages/nix.js | 0 .../highlight.js/lib/languages/nsis.js | 0 .../highlight.js/lib/languages/objectivec.js | 0 .../highlight.js/lib/languages/ocaml.js | 0 .../highlight.js/lib/languages/openscad.js | 0 .../highlight.js/lib/languages/oxygene.js | 0 .../highlight.js/lib/languages/parser3.js | 0 .../highlight.js/lib/languages/perl.js | 0 .../highlight.js/lib/languages/pf.js | 0 .../highlight.js/lib/languages/php.js | 0 .../highlight.js/lib/languages/pony.js | 0 .../highlight.js/lib/languages/powershell.js | 0 .../highlight.js/lib/languages/processing.js | 0 .../highlight.js/lib/languages/profile.js | 0 .../highlight.js/lib/languages/prolog.js | 0 .../highlight.js/lib/languages/protobuf.js | 0 .../highlight.js/lib/languages/puppet.js | 0 .../highlight.js/lib/languages/purebasic.js | 0 .../highlight.js/lib/languages/python.js | 0 .../node_modules/highlight.js/lib/languages/q.js | 0 .../highlight.js/lib/languages/qml.js | 0 .../node_modules/highlight.js/lib/languages/r.js | 0 .../highlight.js/lib/languages/rib.js | 0 .../highlight.js/lib/languages/roboconf.js | 0 .../highlight.js/lib/languages/rsl.js | 0 .../highlight.js/lib/languages/ruby.js | 0 .../highlight.js/lib/languages/ruleslanguage.js | 0 .../highlight.js/lib/languages/rust.js | 0 .../highlight.js/lib/languages/scala.js | 0 .../highlight.js/lib/languages/scheme.js | 0 .../highlight.js/lib/languages/scilab.js | 0 .../highlight.js/lib/languages/scss.js | 0 .../highlight.js/lib/languages/smali.js | 0 .../highlight.js/lib/languages/smalltalk.js | 0 .../highlight.js/lib/languages/sml.js | 0 .../highlight.js/lib/languages/sqf.js | 0 .../highlight.js/lib/languages/sql.js | 0 .../highlight.js/lib/languages/stan.js | 0 .../highlight.js/lib/languages/stata.js | 0 .../highlight.js/lib/languages/step21.js | 0 .../highlight.js/lib/languages/stylus.js | 0 .../highlight.js/lib/languages/subunit.js | 0 .../highlight.js/lib/languages/swift.js | 0 .../highlight.js/lib/languages/taggerscript.js | 0 .../highlight.js/lib/languages/tap.js | 0 .../highlight.js/lib/languages/tcl.js | 0 .../highlight.js/lib/languages/tex.js | 0 .../highlight.js/lib/languages/thrift.js | 0 .../highlight.js/lib/languages/tp.js | 0 .../highlight.js/lib/languages/twig.js | 0 .../highlight.js/lib/languages/typescript.js | 0 .../highlight.js/lib/languages/vala.js | 0 .../highlight.js/lib/languages/vbnet.js | 0 .../highlight.js/lib/languages/vbscript-html.js | 0 .../highlight.js/lib/languages/vbscript.js | 0 .../highlight.js/lib/languages/verilog.js | 0 .../highlight.js/lib/languages/vhdl.js | 0 .../highlight.js/lib/languages/vim.js | 0 .../highlight.js/lib/languages/x86asm.js | 0 .../highlight.js/lib/languages/xl.js | 0 .../highlight.js/lib/languages/xml.js | 0 .../highlight.js/lib/languages/xquery.js | 0 .../highlight.js/lib/languages/yaml.js | 0 .../highlight.js/lib/languages/zephir.js | 0 .../node_modules/highlight.js/package.json | 0 .../node_modules/highlight.js/styles/agate.css | 0 .../highlight.js/styles/androidstudio.css | 0 .../highlight.js/styles/arduino-light.css | 0 .../node_modules/highlight.js/styles/arta.css | 0 .../node_modules/highlight.js/styles/ascetic.css | 0 .../highlight.js/styles/atelier-cave-dark.css | 0 .../highlight.js/styles/atelier-cave-light.css | 0 .../highlight.js/styles/atelier-dune-dark.css | 0 .../highlight.js/styles/atelier-dune-light.css | 0 .../highlight.js/styles/atelier-estuary-dark.css | 0 .../styles/atelier-estuary-light.css | 0 .../highlight.js/styles/atelier-forest-dark.css | 0 .../highlight.js/styles/atelier-forest-light.css | 0 .../highlight.js/styles/atelier-heath-dark.css | 0 .../highlight.js/styles/atelier-heath-light.css | 0 .../styles/atelier-lakeside-dark.css | 0 .../styles/atelier-lakeside-light.css | 0 .../highlight.js/styles/atelier-plateau-dark.css | 0 .../styles/atelier-plateau-light.css | 0 .../highlight.js/styles/atelier-savanna-dark.css | 0 .../styles/atelier-savanna-light.css | 0 .../highlight.js/styles/atelier-seaside-dark.css | 0 .../styles/atelier-seaside-light.css | 0 .../styles/atelier-sulphurpool-dark.css | 0 .../styles/atelier-sulphurpool-light.css | 0 .../highlight.js/styles/atom-one-dark.css | 0 .../highlight.js/styles/atom-one-light.css | 0 .../highlight.js/styles/brown-paper.css | 0 .../highlight.js/styles/brown-papersq.png | Bin .../highlight.js/styles/codepen-embed.css | 0 .../highlight.js/styles/color-brewer.css | 0 .../node_modules/highlight.js/styles/darcula.css | 0 .../node_modules/highlight.js/styles/dark.css | 0 .../node_modules/highlight.js/styles/darkula.css | 0 .../node_modules/highlight.js/styles/default.css | 0 .../node_modules/highlight.js/styles/docco.css | 0 .../node_modules/highlight.js/styles/dracula.css | 0 .../node_modules/highlight.js/styles/far.css | 0 .../highlight.js/styles/foundation.css | 0 .../highlight.js/styles/github-gist.css | 0 .../node_modules/highlight.js/styles/github.css | 0 .../highlight.js/styles/googlecode.css | 0 .../highlight.js/styles/grayscale.css | 0 .../highlight.js/styles/gruvbox-dark.css | 0 .../highlight.js/styles/gruvbox-light.css | 0 .../highlight.js/styles/hopscotch.css | 0 .../node_modules/highlight.js/styles/hybrid.css | 0 .../node_modules/highlight.js/styles/idea.css | 0 .../highlight.js/styles/ir-black.css | 0 .../highlight.js/styles/kimbie.dark.css | 0 .../highlight.js/styles/kimbie.light.css | 0 .../node_modules/highlight.js/styles/magula.css | 0 .../highlight.js/styles/mono-blue.css | 0 .../highlight.js/styles/monokai-sublime.css | 0 .../node_modules/highlight.js/styles/monokai.css | 0 .../highlight.js/styles/obsidian.css | 0 .../node_modules/highlight.js/styles/ocean.css | 0 .../highlight.js/styles/paraiso-dark.css | 0 .../highlight.js/styles/paraiso-light.css | 0 .../highlight.js/styles/pojoaque.css | 0 .../highlight.js/styles/pojoaque.jpg | Bin .../highlight.js/styles/purebasic.css | 0 .../highlight.js/styles/qtcreator_dark.css | 0 .../highlight.js/styles/qtcreator_light.css | 0 .../highlight.js/styles/railscasts.css | 0 .../node_modules/highlight.js/styles/rainbow.css | 0 .../highlight.js/styles/school-book.css | 0 .../highlight.js/styles/school-book.png | Bin .../highlight.js/styles/solarized-dark.css | 0 .../highlight.js/styles/solarized-light.css | 0 .../highlight.js/styles/sunburst.css | 0 .../highlight.js/styles/tomorrow-night-blue.css | 0 .../styles/tomorrow-night-bright.css | 0 .../styles/tomorrow-night-eighties.css | 0 .../highlight.js/styles/tomorrow-night.css | 0 .../highlight.js/styles/tomorrow.css | 0 .../node_modules/highlight.js/styles/vs.css | 0 .../node_modules/highlight.js/styles/xcode.css | 0 .../node_modules/highlight.js/styles/xt256.css | 0 .../node_modules/highlight.js/styles/zenburn.css | 0 .../node_modules/jquery.scrollto/.jscsrc | 0 .../node_modules/jquery.scrollto/.jshintrc | 0 .../node_modules/jquery.scrollto/.npmignore | 0 .../node_modules/jquery.scrollto/CHANGELOG.md | 0 .../node_modules/jquery.scrollto/LICENSE | 0 .../node_modules/jquery.scrollto/README.md | 0 .../node_modules/jquery.scrollto/bower.json | 0 .../node_modules/jquery.scrollto/composer.json | 0 .../jquery.scrollto/demo/css/style.css | 0 .../jquery.scrollto/demo/css/style.old.css | 0 .../node_modules/jquery.scrollto/demo/index.html | 0 .../jquery.scrollto/demo/index.old.html | 0 .../jquery.scrollto/jquery.scrollTo.js | 0 .../jquery.scrollto/jquery.scrollTo.min.js | 0 .../node_modules/jquery.scrollto/package.json | 0 .../jquery.scrollto/tests/ElemMaxY-compat.html | 0 .../jquery.scrollto/tests/ElemMaxY-quirks.html | 0 .../jquery.scrollto/tests/WinMaxY-compat.html | 0 .../jquery.scrollto/tests/WinMaxY-quirks.html | 0 .../tests/WinMaxY-to-iframe-compat.html | 0 .../tests/WinMaxY-to-iframe-quirks.html | 0 .../tests/WinMaxY-with-iframe-compat.html | 0 .../tests/WinMaxY-with-iframe-quirks.html | 0 .../jquery.scrollto/tests/index.html | 0 .../node_modules/jquery.scrollto/tests/test.js | 0 .../node_modules/jquery/AUTHORS.txt | 0 .../node_modules/jquery/LICENSE.txt | 0 .../{1_5 => v1.5}/node_modules/jquery/README.md | 0 .../{1_5 => v1.5}/node_modules/jquery/bower.json | 0 .../node_modules/jquery/dist/core.js | 0 .../node_modules/jquery/dist/jquery.js | 0 .../node_modules/jquery/dist/jquery.min.js | 0 .../node_modules/jquery/dist/jquery.min.map | 0 .../node_modules/jquery/dist/jquery.slim.js | 0 .../node_modules/jquery/dist/jquery.slim.min.js | 0 .../node_modules/jquery/dist/jquery.slim.min.map | 0 .../jquery/external/sizzle/LICENSE.txt | 0 .../jquery/external/sizzle/dist/sizzle.js | 0 .../jquery/external/sizzle/dist/sizzle.min.js | 0 .../jquery/external/sizzle/dist/sizzle.min.map | 0 .../node_modules/jquery/package.json | 0 .../node_modules/jquery/src/.eslintrc.json | 0 .../node_modules/jquery/src/ajax.js | 0 .../node_modules/jquery/src/ajax/jsonp.js | 0 .../node_modules/jquery/src/ajax/load.js | 0 .../node_modules/jquery/src/ajax/parseXML.js | 0 .../node_modules/jquery/src/ajax/script.js | 0 .../node_modules/jquery/src/ajax/var/location.js | 0 .../node_modules/jquery/src/ajax/var/nonce.js | 0 .../node_modules/jquery/src/ajax/var/rquery.js | 0 .../node_modules/jquery/src/ajax/xhr.js | 0 .../node_modules/jquery/src/attributes.js | 0 .../node_modules/jquery/src/attributes/attr.js | 0 .../jquery/src/attributes/classes.js | 0 .../node_modules/jquery/src/attributes/prop.js | 0 .../jquery/src/attributes/support.js | 0 .../node_modules/jquery/src/attributes/val.js | 0 .../node_modules/jquery/src/callbacks.js | 0 .../node_modules/jquery/src/core.js | 0 .../node_modules/jquery/src/core/DOMEval.js | 0 .../node_modules/jquery/src/core/access.js | 0 .../node_modules/jquery/src/core/init.js | 0 .../node_modules/jquery/src/core/parseHTML.js | 0 .../jquery/src/core/ready-no-deferred.js | 0 .../node_modules/jquery/src/core/ready.js | 0 .../jquery/src/core/readyException.js | 0 .../jquery/src/core/stripAndCollapse.js | 0 .../node_modules/jquery/src/core/support.js | 0 .../jquery/src/core/var/rsingleTag.js | 0 .../{1_5 => v1.5}/node_modules/jquery/src/css.js | 0 .../node_modules/jquery/src/css/addGetHookIf.js | 0 .../node_modules/jquery/src/css/adjustCSS.js | 0 .../node_modules/jquery/src/css/curCSS.js | 0 .../jquery/src/css/hiddenVisibleSelectors.js | 0 .../node_modules/jquery/src/css/showHide.js | 0 .../node_modules/jquery/src/css/support.js | 0 .../node_modules/jquery/src/css/var/cssExpand.js | 0 .../node_modules/jquery/src/css/var/getStyles.js | 0 .../jquery/src/css/var/isHiddenWithinTree.js | 0 .../node_modules/jquery/src/css/var/rmargin.js | 0 .../node_modules/jquery/src/css/var/rnumnonpx.js | 0 .../node_modules/jquery/src/css/var/swap.js | 0 .../node_modules/jquery/src/data.js | 0 .../node_modules/jquery/src/data/Data.js | 0 .../jquery/src/data/var/acceptData.js | 0 .../node_modules/jquery/src/data/var/dataPriv.js | 0 .../node_modules/jquery/src/data/var/dataUser.js | 0 .../node_modules/jquery/src/deferred.js | 0 .../jquery/src/deferred/exceptionHook.js | 0 .../node_modules/jquery/src/deprecated.js | 0 .../node_modules/jquery/src/dimensions.js | 0 .../node_modules/jquery/src/effects.js | 0 .../node_modules/jquery/src/effects/Tween.js | 0 .../jquery/src/effects/animatedSelector.js | 0 .../node_modules/jquery/src/event.js | 0 .../node_modules/jquery/src/event/ajax.js | 0 .../node_modules/jquery/src/event/alias.js | 0 .../node_modules/jquery/src/event/focusin.js | 0 .../node_modules/jquery/src/event/support.js | 0 .../node_modules/jquery/src/event/trigger.js | 0 .../node_modules/jquery/src/exports/amd.js | 0 .../node_modules/jquery/src/exports/global.js | 0 .../node_modules/jquery/src/jquery.js | 0 .../node_modules/jquery/src/manipulation.js | 0 .../jquery/src/manipulation/_evalUrl.js | 0 .../jquery/src/manipulation/buildFragment.js | 0 .../jquery/src/manipulation/getAll.js | 0 .../jquery/src/manipulation/setGlobalEval.js | 0 .../jquery/src/manipulation/support.js | 0 .../src/manipulation/var/rcheckableType.js | 0 .../jquery/src/manipulation/var/rscriptType.js | 0 .../jquery/src/manipulation/var/rtagName.js | 0 .../jquery/src/manipulation/wrapMap.js | 0 .../node_modules/jquery/src/offset.js | 0 .../node_modules/jquery/src/queue.js | 0 .../node_modules/jquery/src/queue/delay.js | 0 .../node_modules/jquery/src/selector-native.js | 0 .../node_modules/jquery/src/selector-sizzle.js | 0 .../node_modules/jquery/src/selector.js | 0 .../node_modules/jquery/src/serialize.js | 0 .../node_modules/jquery/src/traversing.js | 0 .../jquery/src/traversing/findFilter.js | 0 .../jquery/src/traversing/var/dir.js | 0 .../jquery/src/traversing/var/rneedsContext.js | 0 .../jquery/src/traversing/var/siblings.js | 0 .../jquery/src/var/ObjectFunctionString.js | 0 .../node_modules/jquery/src/var/arr.js | 0 .../node_modules/jquery/src/var/class2type.js | 0 .../node_modules/jquery/src/var/concat.js | 0 .../node_modules/jquery/src/var/document.js | 0 .../jquery/src/var/documentElement.js | 0 .../node_modules/jquery/src/var/fnToString.js | 0 .../node_modules/jquery/src/var/getProto.js | 0 .../node_modules/jquery/src/var/hasOwn.js | 0 .../node_modules/jquery/src/var/indexOf.js | 0 .../node_modules/jquery/src/var/pnum.js | 0 .../node_modules/jquery/src/var/push.js | 0 .../node_modules/jquery/src/var/rcssNum.js | 0 .../node_modules/jquery/src/var/rnothtmlwhite.js | 0 .../node_modules/jquery/src/var/slice.js | 0 .../node_modules/jquery/src/var/support.js | 0 .../node_modules/jquery/src/var/toString.js | 0 .../node_modules/jquery/src/wrap.js | 0 .../{1_5 => v1.5}/node_modules/marked/.npmignore | 0 .../node_modules/marked/Gulpfile.js | 0 .../{1_5 => v1.5}/node_modules/marked/LICENSE | 0 .../{1_5 => v1.5}/node_modules/marked/Makefile | 0 .../{1_5 => v1.5}/node_modules/marked/README.md | 0 .../{1_5 => v1.5}/node_modules/marked/bin/marked | 0 .../{1_5 => v1.5}/node_modules/marked/bower.json | 0 .../node_modules/marked/component.json | 0 .../node_modules/marked/doc/broken.md | 0 .../node_modules/marked/doc/todo.md | 0 .../{1_5 => v1.5}/node_modules/marked/index.js | 0 .../node_modules/marked/lib/marked.js | 0 .../node_modules/marked/man/marked.1 | 0 .../node_modules/marked/marked.min.js | 0 .../node_modules/marked/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/.npmignore | 0 .../{1_5 => v1.5}/node_modules/mime/LICENSE | 0 .../{1_5 => v1.5}/node_modules/mime/README.md | 0 .../node_modules/mime/build/build.js | 0 .../node_modules/mime/build/test.js | 0 .../{1_5 => v1.5}/node_modules/mime/cli.js | 0 .../{1_5 => v1.5}/node_modules/mime/mime.js | 0 .../{1_5 => v1.5}/node_modules/mime/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/types.json | 0 .../{1_5 => v1.5}/node_modules/minimist/LICENSE | 0 .../node_modules/minimist/example/parse.js | 0 .../{1_5 => v1.5}/node_modules/minimist/index.js | 0 .../node_modules/minimist/package.json | 0 .../node_modules/minimist/readme.markdown | 0 .../node_modules/minimist/test/bool.js | 0 .../node_modules/minimist/test/dash.js | 0 .../node_modules/minimist/test/default_bool.js | 0 .../node_modules/minimist/test/dotted.js | 0 .../node_modules/minimist/test/long.js | 0 .../node_modules/minimist/test/num.js | 0 .../node_modules/minimist/test/parse.js | 0 .../node_modules/minimist/test/parse_modified.js | 0 .../node_modules/minimist/test/short.js | 0 .../node_modules/minimist/test/whitespace.js | 0 .../node_modules/node-static/.npmignore | 0 .../node_modules/node-static/LICENSE | 0 .../node_modules/node-static/README.md | 0 .../node-static/benchmark/node-static-0.3.0.txt | 0 .../node_modules/node-static/bin/cli.js | 0 .../node-static/examples/file-server.js | 0 .../node_modules/node-static/lib/node-static.js | 0 .../node-static/lib/node-static/util.js | 0 .../node_modules/node-static/package.json | 0 .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 0 .../node-static/test/fixtures/index.html | 0 .../node-static/test/fixtures/there/index.html | 0 .../test/integration/node-static-test.js | 0 .../{1_5 => v1.5}/node_modules/optimist/LICENSE | 0 .../node_modules/optimist/example/bool.js | 0 .../optimist/example/boolean_double.js | 0 .../optimist/example/boolean_single.js | 0 .../optimist/example/default_hash.js | 0 .../optimist/example/default_singles.js | 0 .../node_modules/optimist/example/divide.js | 0 .../node_modules/optimist/example/line_count.js | 0 .../optimist/example/line_count_options.js | 0 .../optimist/example/line_count_wrap.js | 0 .../node_modules/optimist/example/nonopt.js | 0 .../node_modules/optimist/example/reflect.js | 0 .../node_modules/optimist/example/short.js | 0 .../node_modules/optimist/example/string.js | 0 .../optimist/example/usage-options.js | 0 .../node_modules/optimist/example/xup.js | 0 .../{1_5 => v1.5}/node_modules/optimist/index.js | 0 .../node_modules/optimist/package.json | 0 .../node_modules/optimist/readme.markdown | 0 .../node_modules/optimist/test/_.js | 0 .../node_modules/optimist/test/_/argv.js | 0 .../node_modules/optimist/test/_/bin.js | 0 .../node_modules/optimist/test/dash.js | 0 .../node_modules/optimist/test/parse.js | 0 .../node_modules/optimist/test/parse_modified.js | 0 .../node_modules/optimist/test/short.js | 0 .../node_modules/optimist/test/usage.js | 0 .../node_modules/optimist/test/whitespace.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/LICENSE | 0 .../node_modules/wordwrap/README.markdown | 0 .../node_modules/wordwrap/example/center.js | 0 .../node_modules/wordwrap/example/meat.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/index.js | 0 .../node_modules/wordwrap/package.json | 0 .../node_modules/wordwrap/test/break.js | 0 .../node_modules/wordwrap/test/idleness.txt | 0 .../node_modules/wordwrap/test/wrap.js | 0 .../{1_5 => v1.5}/package.json | 0 .../{1_5 => v1.5}/runbrodocs.sh | 0 docs/resources-reference/{1_5 => v1.5}/scroll.js | 0 docs/resources-reference/{1_5 => v1.5}/server.js | 0 .../{1_5 => v1.5}/stylesheet.css | 0 .../{1_5 => v1.5}/tabvisibility.js | 0 .../node_modules/node-static/.package.json.un~ | Bin 565 -> 0 bytes .../node-static/lib/.node-static.js.un~ | Bin 1018 -> 0 bytes docs/user-guide/kubectl/{1_5 => v1.5}/LICENSE | 0 docs/user-guide/kubectl/{1_5 => v1.5}/README.md | 0 docs/user-guide/kubectl/{1_5 => v1.5}/actions.js | 0 docs/user-guide/kubectl/{1_5 => v1.5}/brodoc.js | 0 .../{1_5 => v1.5}/documents/_app_management.md | 0 .../kubectl/{1_5 => v1.5}/documents/_cluster.md | 0 .../kubectl/{1_5 => v1.5}/documents/_config.md | 0 .../{1_5 => v1.5}/documents/_definitions.md | 0 .../documents/_generated_annotate.md | 0 .../documents/_generated_api-versions.md | 0 .../_generated_apigroup_unversioned_concept.md | 0 ..._generated_apigroup_unversioned_definition.md | 0 ...generated_apigrouplist_unversioned_concept.md | 0 ...erated_apigrouplist_unversioned_definition.md | 0 ..._generated_apiresource_unversioned_concept.md | 0 ...nerated_apiresource_unversioned_definition.md | 0 ...erated_apiresourcelist_unversioned_concept.md | 0 ...ted_apiresourcelist_unversioned_definition.md | 0 .../_generated_apiversion_v1beta1_concept.md | 0 .../_generated_apiversion_v1beta1_definition.md | 0 ..._generated_apiversions_unversioned_concept.md | 0 ...nerated_apiversions_unversioned_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_apply.md | 0 .../{1_5 => v1.5}/documents/_generated_attach.md | 0 .../_generated_attachedvolume_v1_concept.md | 0 .../_generated_attachedvolume_v1_definition.md | 0 .../documents/_generated_autoscale.md | 0 .../documents/_generated_binding_v1_concept.md | 0 .../_generated_binding_v1_definition.md | 0 .../_generated_capabilities_v1_concept.md | 0 .../_generated_capabilities_v1_definition.md | 0 .../_generated_category_cluster_management.md | 0 ...erated_category_declarative_app_management.md | 0 .../_generated_category_deprecated_commands.md | 0 ...erated_category_kubectl_settings_and_usage.md | 0 .../documents/_generated_certificate.md | 0 ...certificatesigningrequest_v1alpha1_concept.md | 0 ...tificatesigningrequest_v1alpha1_definition.md | 0 ...tesigningrequestcondition_v1alpha1_concept.md | 0 ...igningrequestcondition_v1alpha1_definition.md | 0 ...ificatesigningrequestlist_v1alpha1_concept.md | 0 ...catesigningrequestlist_v1alpha1_definition.md | 0 ...ificatesigningrequestspec_v1alpha1_concept.md | 0 ...catesigningrequestspec_v1alpha1_definition.md | 0 ...icatesigningrequeststatus_v1alpha1_concept.md | 0 ...tesigningrequeststatus_v1alpha1_definition.md | 0 .../documents/_generated_cluster-info.md | 0 .../_generated_clusterrole_v1alpha1_concept.md | 0 ..._generated_clusterrole_v1alpha1_definition.md | 0 ...erated_clusterrolebinding_v1alpha1_concept.md | 0 ...ted_clusterrolebinding_v1alpha1_definition.md | 0 ...ed_clusterrolebindinglist_v1alpha1_concept.md | 0 ...clusterrolebindinglist_v1alpha1_definition.md | 0 ...generated_clusterrolelist_v1alpha1_concept.md | 0 ...erated_clusterrolelist_v1alpha1_definition.md | 0 .../documents/_generated_completion.md | 0 .../_generated_componentcondition_v1_concept.md | 0 ...generated_componentcondition_v1_definition.md | 0 .../_generated_componentstatus_v1_concept.md | 0 .../_generated_componentstatus_v1_definition.md | 0 .../_generated_componentstatuslist_v1_concept.md | 0 ...enerated_componentstatuslist_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_config.md | 0 .../documents/_generated_configmap_v1_concept.md | 0 .../_generated_configmap_v1_definition.md | 0 ..._generated_configmapkeyselector_v1_concept.md | 0 ...nerated_configmapkeyselector_v1_definition.md | 0 .../_generated_configmaplist_v1_concept.md | 0 .../_generated_configmaplist_v1_definition.md | 0 .../documents/_generated_container_v1_concept.md | 0 .../_generated_container_v1_definition.md | 0 .../_generated_containerimage_v1_concept.md | 0 .../_generated_containerimage_v1_definition.md | 0 .../_generated_containerport_v1_concept.md | 0 .../_generated_containerport_v1_definition.md | 0 .../_generated_containerstate_v1_concept.md | 0 .../_generated_containerstate_v1_definition.md | 0 ...generated_containerstaterunning_v1_concept.md | 0 ...erated_containerstaterunning_v1_definition.md | 0 ...erated_containerstateterminated_v1_concept.md | 0 ...ted_containerstateterminated_v1_definition.md | 0 ...generated_containerstatewaiting_v1_concept.md | 0 ...erated_containerstatewaiting_v1_definition.md | 0 .../_generated_containerstatus_v1_concept.md | 0 .../_generated_containerstatus_v1_definition.md | 0 .../documents/_generated_convert.md | 0 .../{1_5 => v1.5}/documents/_generated_cordon.md | 0 .../{1_5 => v1.5}/documents/_generated_cp.md | 0 ...rated_cputargetutilization_v1beta1_concept.md | 0 ...ed_cputargetutilization_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_create.md | 0 ...ted_crossversionobjectreference_v1_concept.md | 0 ..._crossversionobjectreference_v1_definition.md | 0 .../_generated_daemonendpoint_v1_concept.md | 0 .../_generated_daemonendpoint_v1_definition.md | 0 .../_generated_daemonset_v1beta1_concept.md | 0 .../_generated_daemonset_v1beta1_definition.md | 0 .../_generated_daemonsetlist_v1beta1_concept.md | 0 ...generated_daemonsetlist_v1beta1_definition.md | 0 .../_generated_daemonsetspec_v1beta1_concept.md | 0 ...generated_daemonsetspec_v1beta1_definition.md | 0 ..._generated_daemonsetstatus_v1beta1_concept.md | 0 ...nerated_daemonsetstatus_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_delete.md | 0 .../_generated_deleteoptions_v1_concept.md | 0 .../_generated_deleteoptions_v1_definition.md | 0 .../_generated_deployment_v1beta1_concept.md | 0 .../_generated_deployment_v1beta1_definition.md | 0 ...erated_deploymentcondition_v1beta1_concept.md | 0 ...ted_deploymentcondition_v1beta1_definition.md | 0 .../_generated_deploymentlist_v1beta1_concept.md | 0 ...enerated_deploymentlist_v1beta1_definition.md | 0 ...nerated_deploymentrollback_v1beta1_concept.md | 0 ...ated_deploymentrollback_v1beta1_definition.md | 0 .../_generated_deploymentspec_v1beta1_concept.md | 0 ...enerated_deploymentspec_v1beta1_definition.md | 0 ...generated_deploymentstatus_v1beta1_concept.md | 0 ...erated_deploymentstatus_v1beta1_definition.md | 0 ...nerated_deploymentstrategy_v1beta1_concept.md | 0 ...ated_deploymentstrategy_v1beta1_definition.md | 0 .../documents/_generated_describe.md | 0 .../{1_5 => v1.5}/documents/_generated_drain.md | 0 .../{1_5 => v1.5}/documents/_generated_edit.md | 0 .../_generated_endpointaddress_v1_concept.md | 0 .../_generated_endpointaddress_v1_definition.md | 0 .../_generated_endpointport_v1_concept.md | 0 .../_generated_endpointport_v1_definition.md | 0 .../documents/_generated_endpoints_v1_concept.md | 0 .../_generated_endpoints_v1_definition.md | 0 .../_generated_endpointslist_v1_concept.md | 0 .../_generated_endpointslist_v1_definition.md | 0 .../_generated_endpointsubset_v1_concept.md | 0 .../_generated_endpointsubset_v1_definition.md | 0 .../documents/_generated_envvar_v1_concept.md | 0 .../documents/_generated_envvar_v1_definition.md | 0 .../_generated_envvarsource_v1_concept.md | 0 .../_generated_envvarsource_v1_definition.md | 0 .../documents/_generated_event_v1_concept.md | 0 .../documents/_generated_event_v1_definition.md | 0 .../_generated_event_versioned_concept.md | 0 .../_generated_event_versioned_definition.md | 0 .../documents/_generated_eventlist_v1_concept.md | 0 .../_generated_eventlist_v1_definition.md | 0 .../_generated_eventsource_v1_concept.md | 0 .../_generated_eventsource_v1_definition.md | 0 .../_generated_eviction_v1beta1_concept.md | 0 .../_generated_eviction_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_exec.md | 0 .../_generated_execaction_v1_concept.md | 0 .../_generated_execaction_v1_definition.md | 0 .../documents/_generated_explain.md | 0 .../{1_5 => v1.5}/documents/_generated_expose.md | 0 .../{1_5 => v1.5}/documents/_generated_get.md | 0 ...oupversionfordiscovery_unversioned_concept.md | 0 ...versionfordiscovery_unversioned_definition.md | 0 .../documents/_generated_handler_v1_concept.md | 0 .../_generated_handler_v1_definition.md | 0 ...nerated_horizontalpodautoscaler_v1_concept.md | 0 ...ated_horizontalpodautoscaler_v1_definition.md | 0 ...ed_horizontalpodautoscaler_v1beta1_concept.md | 0 ...horizontalpodautoscaler_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerlist_v1_concept.md | 0 ..._horizontalpodautoscalerlist_v1_definition.md | 0 ...orizontalpodautoscalerlist_v1beta1_concept.md | 0 ...zontalpodautoscalerlist_v1beta1_definition.md | 0 ...ted_horizontalpodautoscalerspec_v1_concept.md | 0 ..._horizontalpodautoscalerspec_v1_definition.md | 0 ...orizontalpodautoscalerspec_v1beta1_concept.md | 0 ...zontalpodautoscalerspec_v1beta1_definition.md | 0 ...d_horizontalpodautoscalerstatus_v1_concept.md | 0 ...orizontalpodautoscalerstatus_v1_definition.md | 0 ...izontalpodautoscalerstatus_v1beta1_concept.md | 0 ...ntalpodautoscalerstatus_v1beta1_definition.md | 0 .../_generated_httpgetaction_v1_concept.md | 0 .../_generated_httpgetaction_v1_definition.md | 0 .../_generated_httpheader_v1_concept.md | 0 .../_generated_httpheader_v1_definition.md | 0 .../documents/_generated_info_version_concept.md | 0 .../_generated_info_version_definition.md | 0 .../_generated_ingress_v1beta1_concept.md | 0 .../_generated_ingress_v1beta1_definition.md | 0 .../_generated_ingressbackend_v1beta1_concept.md | 0 ...enerated_ingressbackend_v1beta1_definition.md | 0 .../_generated_ingresslist_v1beta1_concept.md | 0 .../_generated_ingresslist_v1beta1_definition.md | 0 .../_generated_ingressrule_v1beta1_concept.md | 0 .../_generated_ingressrule_v1beta1_definition.md | 0 .../_generated_ingressspec_v1beta1_concept.md | 0 .../_generated_ingressspec_v1beta1_definition.md | 0 .../_generated_ingressstatus_v1beta1_concept.md | 0 ...generated_ingressstatus_v1beta1_definition.md | 0 .../_generated_ingresstls_v1beta1_concept.md | 0 .../_generated_ingresstls_v1beta1_definition.md | 0 .../_generated_intorstring_intstr_concept.md | 0 .../_generated_intorstring_intstr_definition.md | 0 .../documents/_generated_job_v1_concept.md | 0 .../documents/_generated_job_v1_definition.md | 0 .../documents/_generated_job_v1beta1_concept.md | 0 .../_generated_job_v1beta1_definition.md | 0 .../_generated_jobcondition_v1_concept.md | 0 .../_generated_jobcondition_v1_definition.md | 0 .../_generated_jobcondition_v1beta1_concept.md | 0 ..._generated_jobcondition_v1beta1_definition.md | 0 .../documents/_generated_joblist_v1_concept.md | 0 .../_generated_joblist_v1_definition.md | 0 .../_generated_joblist_v1beta1_concept.md | 0 .../_generated_joblist_v1beta1_definition.md | 0 .../documents/_generated_jobspec_v1_concept.md | 0 .../_generated_jobspec_v1_definition.md | 0 .../_generated_jobspec_v1beta1_concept.md | 0 .../_generated_jobspec_v1beta1_definition.md | 0 .../documents/_generated_jobstatus_v1_concept.md | 0 .../_generated_jobstatus_v1_definition.md | 0 .../_generated_jobstatus_v1beta1_concept.md | 0 .../_generated_jobstatus_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_label.md | 0 ...enerated_labelselector_unversioned_concept.md | 0 ...rated_labelselector_unversioned_definition.md | 0 ...belselectorrequirement_unversioned_concept.md | 0 ...selectorrequirement_unversioned_definition.md | 0 .../documents/_generated_lifecycle_v1_concept.md | 0 .../_generated_lifecycle_v1_definition.md | 0 .../_generated_limitrange_v1_concept.md | 0 .../_generated_limitrange_v1_definition.md | 0 .../_generated_limitrangeitem_v1_concept.md | 0 .../_generated_limitrangeitem_v1_definition.md | 0 .../_generated_limitrangelist_v1_concept.md | 0 .../_generated_limitrangelist_v1_definition.md | 0 .../_generated_limitrangespec_v1_concept.md | 0 .../_generated_limitrangespec_v1_definition.md | 0 .../_generated_listmeta_unversioned_concept.md | 0 ..._generated_listmeta_unversioned_definition.md | 0 .../_generated_loadbalanceringress_v1_concept.md | 0 ...enerated_loadbalanceringress_v1_definition.md | 0 .../_generated_loadbalancerstatus_v1_concept.md | 0 ...generated_loadbalancerstatus_v1_definition.md | 0 ..._generated_localobjectreference_v1_concept.md | 0 ...nerated_localobjectreference_v1_definition.md | 0 ...d_localsubjectaccessreview_v1beta1_concept.md | 0 ...ocalsubjectaccessreview_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_logs.md | 0 .../documents/_generated_namespace_v1_concept.md | 0 .../_generated_namespace_v1_definition.md | 0 .../_generated_namespacelist_v1_concept.md | 0 .../_generated_namespacelist_v1_definition.md | 0 .../_generated_namespacespec_v1_concept.md | 0 .../_generated_namespacespec_v1_definition.md | 0 .../_generated_namespacestatus_v1_concept.md | 0 .../_generated_namespacestatus_v1_definition.md | 0 .../_generated_networkpolicy_v1beta1_concept.md | 0 ...generated_networkpolicy_v1beta1_definition.md | 0 ...d_networkpolicyingressrule_v1beta1_concept.md | 0 ...etworkpolicyingressrule_v1beta1_definition.md | 0 ...enerated_networkpolicylist_v1beta1_concept.md | 0 ...rated_networkpolicylist_v1beta1_definition.md | 0 ...enerated_networkpolicypeer_v1beta1_concept.md | 0 ...rated_networkpolicypeer_v1beta1_definition.md | 0 ...enerated_networkpolicyport_v1beta1_concept.md | 0 ...rated_networkpolicyport_v1beta1_definition.md | 0 ...enerated_networkpolicyspec_v1beta1_concept.md | 0 ...rated_networkpolicyspec_v1beta1_definition.md | 0 .../documents/_generated_node_v1_concept.md | 0 .../documents/_generated_node_v1_definition.md | 0 .../_generated_nodeaddress_v1_concept.md | 0 .../_generated_nodeaddress_v1_definition.md | 0 .../_generated_nodecondition_v1_concept.md | 0 .../_generated_nodecondition_v1_definition.md | 0 .../_generated_nodedaemonendpoints_v1_concept.md | 0 ...enerated_nodedaemonendpoints_v1_definition.md | 0 .../documents/_generated_nodelist_v1_concept.md | 0 .../_generated_nodelist_v1_definition.md | 0 .../documents/_generated_nodespec_v1_concept.md | 0 .../_generated_nodespec_v1_definition.md | 0 .../_generated_nodestatus_v1_concept.md | 0 .../_generated_nodestatus_v1_definition.md | 0 .../_generated_nodesysteminfo_v1_concept.md | 0 .../_generated_nodesysteminfo_v1_definition.md | 0 ...ated_nonresourceattributes_v1beta1_concept.md | 0 ...d_nonresourceattributes_v1beta1_definition.md | 0 .../_generated_objectfieldselector_v1_concept.md | 0 ...enerated_objectfieldselector_v1_definition.md | 0 .../_generated_objectmeta_v1_concept.md | 0 .../_generated_objectmeta_v1_definition.md | 0 .../_generated_objectreference_v1_concept.md | 0 .../_generated_objectreference_v1_definition.md | 0 .../documents/_generated_options.md | 0 .../_generated_ownerreference_v1_concept.md | 0 .../_generated_ownerreference_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_patch.md | 0 .../_generated_patch_unversioned_concept.md | 0 .../_generated_patch_unversioned_definition.md | 0 .../_generated_persistentvolume_v1_concept.md | 0 .../_generated_persistentvolume_v1_definition.md | 0 ...generated_persistentvolumeclaim_v1_concept.md | 0 ...erated_persistentvolumeclaim_v1_definition.md | 0 ...rated_persistentvolumeclaimlist_v1_concept.md | 0 ...ed_persistentvolumeclaimlist_v1_definition.md | 0 ...rated_persistentvolumeclaimspec_v1_concept.md | 0 ...ed_persistentvolumeclaimspec_v1_definition.md | 0 ...ted_persistentvolumeclaimstatus_v1_concept.md | 0 ..._persistentvolumeclaimstatus_v1_definition.md | 0 ..._generated_persistentvolumelist_v1_concept.md | 0 ...nerated_persistentvolumelist_v1_definition.md | 0 ..._generated_persistentvolumespec_v1_concept.md | 0 ...nerated_persistentvolumespec_v1_definition.md | 0 ...enerated_persistentvolumestatus_v1_concept.md | 0 ...rated_persistentvolumestatus_v1_definition.md | 0 .../documents/_generated_pod_v1_concept.md | 0 .../documents/_generated_pod_v1_definition.md | 0 .../_generated_podcondition_v1_concept.md | 0 .../_generated_podcondition_v1_definition.md | 0 ...erated_poddisruptionbudget_v1beta1_concept.md | 0 ...ted_poddisruptionbudget_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetlist_v1beta1_concept.md | 0 ...poddisruptionbudgetlist_v1beta1_definition.md | 0 ...ed_poddisruptionbudgetspec_v1beta1_concept.md | 0 ...poddisruptionbudgetspec_v1beta1_definition.md | 0 ..._poddisruptionbudgetstatus_v1beta1_concept.md | 0 ...ddisruptionbudgetstatus_v1beta1_definition.md | 0 .../documents/_generated_podlist_v1_concept.md | 0 .../_generated_podlist_v1_definition.md | 0 .../_generated_podsecuritycontext_v1_concept.md | 0 ...generated_podsecuritycontext_v1_definition.md | 0 .../documents/_generated_podspec_v1_concept.md | 0 .../_generated_podspec_v1_definition.md | 0 .../documents/_generated_podstatus_v1_concept.md | 0 .../_generated_podstatus_v1_definition.md | 0 .../_generated_podtemplate_v1_concept.md | 0 .../_generated_podtemplate_v1_definition.md | 0 .../_generated_podtemplatelist_v1_concept.md | 0 .../_generated_podtemplatelist_v1_definition.md | 0 .../_generated_podtemplatespec_v1_concept.md | 0 .../_generated_podtemplatespec_v1_definition.md | 0 .../_generated_policyrule_v1alpha1_concept.md | 0 .../_generated_policyrule_v1alpha1_definition.md | 0 .../documents/_generated_port-forward.md | 0 .../_generated_preconditions_v1_concept.md | 0 .../_generated_preconditions_v1_definition.md | 0 .../documents/_generated_probe_v1_concept.md | 0 .../documents/_generated_probe_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_proxy.md | 0 .../_generated_quantity_resource_concept.md | 0 .../_generated_quantity_resource_definition.md | 0 .../_generated_rawextension_runtime_concept.md | 0 ..._generated_rawextension_runtime_definition.md | 0 .../documents/_generated_replace.md | 0 .../_generated_replicaset_v1beta1_concept.md | 0 .../_generated_replicaset_v1beta1_definition.md | 0 ...erated_replicasetcondition_v1beta1_concept.md | 0 ...ted_replicasetcondition_v1beta1_definition.md | 0 .../_generated_replicasetlist_v1beta1_concept.md | 0 ...enerated_replicasetlist_v1beta1_definition.md | 0 .../_generated_replicasetspec_v1beta1_concept.md | 0 ...enerated_replicasetspec_v1beta1_definition.md | 0 ...generated_replicasetstatus_v1beta1_concept.md | 0 ...erated_replicasetstatus_v1beta1_definition.md | 0 ...generated_replicationcontroller_v1_concept.md | 0 ...erated_replicationcontroller_v1_definition.md | 0 ..._replicationcontrollercondition_v1_concept.md | 0 ...plicationcontrollercondition_v1_definition.md | 0 ...rated_replicationcontrollerlist_v1_concept.md | 0 ...ed_replicationcontrollerlist_v1_definition.md | 0 ...rated_replicationcontrollerspec_v1_concept.md | 0 ...ed_replicationcontrollerspec_v1_definition.md | 0 ...ted_replicationcontrollerstatus_v1_concept.md | 0 ..._replicationcontrollerstatus_v1_definition.md | 0 ...nerated_resourceattributes_v1beta1_concept.md | 0 ...ated_resourceattributes_v1beta1_definition.md | 0 ...generated_resourcefieldselector_v1_concept.md | 0 ...erated_resourcefieldselector_v1_definition.md | 0 .../_generated_resourcequota_v1_concept.md | 0 .../_generated_resourcequota_v1_definition.md | 0 .../_generated_resourcequotalist_v1_concept.md | 0 ..._generated_resourcequotalist_v1_definition.md | 0 .../_generated_resourcequotaspec_v1_concept.md | 0 ..._generated_resourcequotaspec_v1_definition.md | 0 .../_generated_resourcequotastatus_v1_concept.md | 0 ...enerated_resourcequotastatus_v1_definition.md | 0 ..._generated_resourcerequirements_v1_concept.md | 0 ...nerated_resourcerequirements_v1_definition.md | 0 .../_generated_role_v1alpha1_concept.md | 0 .../_generated_role_v1alpha1_definition.md | 0 .../_generated_rolebinding_v1alpha1_concept.md | 0 ..._generated_rolebinding_v1alpha1_definition.md | 0 ...generated_rolebindinglist_v1alpha1_concept.md | 0 ...erated_rolebindinglist_v1alpha1_definition.md | 0 .../_generated_rolelist_v1alpha1_concept.md | 0 .../_generated_rolelist_v1alpha1_definition.md | 0 .../_generated_roleref_v1alpha1_concept.md | 0 .../_generated_roleref_v1alpha1_definition.md | 0 .../_generated_rollbackconfig_v1beta1_concept.md | 0 ...enerated_rollbackconfig_v1beta1_definition.md | 0 .../documents/_generated_rolling-update.md | 0 ...ed_rollingupdatedeployment_v1beta1_concept.md | 0 ...rollingupdatedeployment_v1beta1_definition.md | 0 .../documents/_generated_rollout.md | 0 .../{1_5 => v1.5}/documents/_generated_run.md | 0 .../{1_5 => v1.5}/documents/_generated_scale.md | 0 .../documents/_generated_scale_v1_concept.md | 0 .../documents/_generated_scale_v1_definition.md | 0 .../_generated_scale_v1beta1_concept.md | 0 .../_generated_scale_v1beta1_definition.md | 0 .../documents/_generated_scalespec_v1_concept.md | 0 .../_generated_scalespec_v1_definition.md | 0 .../_generated_scalespec_v1beta1_concept.md | 0 .../_generated_scalespec_v1beta1_definition.md | 0 .../_generated_scalestatus_v1_concept.md | 0 .../_generated_scalestatus_v1_definition.md | 0 .../_generated_scalestatus_v1beta1_concept.md | 0 .../_generated_scalestatus_v1beta1_definition.md | 0 .../documents/_generated_secret_v1_concept.md | 0 .../documents/_generated_secret_v1_definition.md | 0 .../_generated_secretkeyselector_v1_concept.md | 0 ..._generated_secretkeyselector_v1_definition.md | 0 .../_generated_secretlist_v1_concept.md | 0 .../_generated_secretlist_v1_definition.md | 0 .../_generated_securitycontext_v1_concept.md | 0 .../_generated_securitycontext_v1_definition.md | 0 ...ed_selfsubjectaccessreview_v1beta1_concept.md | 0 ...selfsubjectaccessreview_v1beta1_definition.md | 0 ...elfsubjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 .../_generated_selinuxoptions_v1_concept.md | 0 .../_generated_selinuxoptions_v1_definition.md | 0 ...veraddressbyclientcidr_unversioned_concept.md | 0 ...addressbyclientcidr_unversioned_definition.md | 0 .../documents/_generated_service_v1_concept.md | 0 .../_generated_service_v1_definition.md | 0 .../_generated_serviceaccount_v1_concept.md | 0 .../_generated_serviceaccount_v1_definition.md | 0 .../_generated_serviceaccountlist_v1_concept.md | 0 ...generated_serviceaccountlist_v1_definition.md | 0 .../_generated_servicelist_v1_concept.md | 0 .../_generated_servicelist_v1_definition.md | 0 .../_generated_serviceport_v1_concept.md | 0 .../_generated_serviceport_v1_definition.md | 0 .../_generated_servicespec_v1_concept.md | 0 .../_generated_servicespec_v1_definition.md | 0 .../_generated_servicestatus_v1_concept.md | 0 .../_generated_servicestatus_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_set.md | 0 .../_generated_statefulset_v1beta1_concept.md | 0 .../_generated_statefulset_v1beta1_definition.md | 0 ..._generated_statefulsetlist_v1beta1_concept.md | 0 ...nerated_statefulsetlist_v1beta1_definition.md | 0 ..._generated_statefulsetspec_v1beta1_concept.md | 0 ...nerated_statefulsetspec_v1beta1_definition.md | 0 ...enerated_statefulsetstatus_v1beta1_concept.md | 0 ...rated_statefulsetstatus_v1beta1_definition.md | 0 .../_generated_status_unversioned_concept.md | 0 .../_generated_status_unversioned_definition.md | 0 ..._generated_statuscause_unversioned_concept.md | 0 ...nerated_statuscause_unversioned_definition.md | 0 ...enerated_statusdetails_unversioned_concept.md | 0 ...rated_statusdetails_unversioned_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_stop.md | 0 .../_generated_storageclass_v1beta1_concept.md | 0 ..._generated_storageclass_v1beta1_definition.md | 0 ...generated_storageclasslist_v1beta1_concept.md | 0 ...erated_storageclasslist_v1beta1_definition.md | 0 .../_generated_subject_v1alpha1_concept.md | 0 .../_generated_subject_v1alpha1_definition.md | 0 ...erated_subjectaccessreview_v1beta1_concept.md | 0 ...ted_subjectaccessreview_v1beta1_definition.md | 0 ...ed_subjectaccessreviewspec_v1beta1_concept.md | 0 ...subjectaccessreviewspec_v1beta1_definition.md | 0 ..._subjectaccessreviewstatus_v1beta1_concept.md | 0 ...bjectaccessreviewstatus_v1beta1_definition.md | 0 ...rated_subresourcereference_v1beta1_concept.md | 0 ...ed_subresourcereference_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_taint.md | 0 .../_generated_tcpsocketaction_v1_concept.md | 0 .../_generated_tcpsocketaction_v1_definition.md | 0 ...nerated_thirdpartyresource_v1beta1_concept.md | 0 ...ated_thirdpartyresource_v1beta1_definition.md | 0 ...ted_thirdpartyresourcelist_v1beta1_concept.md | 0 ..._thirdpartyresourcelist_v1beta1_definition.md | 0 .../_generated_time_unversioned_concept.md | 0 .../_generated_time_unversioned_definition.md | 0 .../_generated_tokenreview_v1beta1_concept.md | 0 .../_generated_tokenreview_v1beta1_definition.md | 0 ..._generated_tokenreviewspec_v1beta1_concept.md | 0 ...nerated_tokenreviewspec_v1beta1_definition.md | 0 ...enerated_tokenreviewstatus_v1beta1_concept.md | 0 ...rated_tokenreviewstatus_v1beta1_definition.md | 0 .../{1_5 => v1.5}/documents/_generated_top.md | 0 .../documents/_generated_uncordon.md | 0 .../_generated_userinfo_v1beta1_concept.md | 0 .../_generated_userinfo_v1beta1_definition.md | 0 .../documents/_generated_version.md | 0 .../documents/_generated_volume_v1_concept.md | 0 .../documents/_generated_volume_v1_definition.md | 0 .../_generated_volumemount_v1_concept.md | 0 .../_generated_volumemount_v1_definition.md | 0 .../{1_5 => v1.5}/documents/_getting_started.md | 0 .../kubectl/{1_5 => v1.5}/documents/_meta.md | 0 .../{1_5 => v1.5}/documents/_oldversions.md | 0 .../kubectl/{1_5 => v1.5}/documents/_overview.md | 0 .../{1_5 => v1.5}/documents/_servicediscovery.md | 0 .../documents/_working_with_apps.md | 0 .../{1_5 => v1.5}/documents/_workloads.md | 0 .../documents/deployment-original.md | 0 .../{1_5 => v1.5}/documents/deployment.md | 0 docs/user-guide/kubectl/{1_5 => v1.5}/index.html | 0 .../kubectl/{1_5 => v1.5}/jsconfig.json | 0 .../kubectl/{1_5 => v1.5}/manifest.json | 0 .../kubectl/{1_5 => v1.5}/markedDecorations.js | 0 docs/user-guide/kubectl/{1_5 => v1.5}/navData.js | 0 .../{1_5 => v1.5}/node_modules/.bin/marked | 0 .../kubectl/{1_5 => v1.5}/node_modules/.bin/mime | 0 .../{1_5 => v1.5}/node_modules/.bin/static | 0 .../node_modules/bootstrap/CHANGELOG.md | 0 .../node_modules/bootstrap/Gruntfile.js | 0 .../{1_5 => v1.5}/node_modules/bootstrap/LICENSE | 0 .../node_modules/bootstrap/README.md | 0 .../bootstrap/dist/css/bootstrap-theme.css | 0 .../bootstrap/dist/css/bootstrap-theme.css.map | 0 .../bootstrap/dist/css/bootstrap-theme.min.css | 0 .../dist/css/bootstrap-theme.min.css.map | 0 .../bootstrap/dist/css/bootstrap.css | 0 .../bootstrap/dist/css/bootstrap.css.map | 0 .../bootstrap/dist/css/bootstrap.min.css | 0 .../bootstrap/dist/css/bootstrap.min.css.map | 0 .../dist/fonts/glyphicons-halflings-regular.eot | Bin .../dist/fonts/glyphicons-halflings-regular.svg | 0 .../dist/fonts/glyphicons-halflings-regular.ttf | Bin .../dist/fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/dist/js/bootstrap.js | 0 .../bootstrap/dist/js/bootstrap.min.js | 0 .../node_modules/bootstrap/dist/js/npm.js | 0 .../fonts/glyphicons-halflings-regular.eot | Bin .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | Bin .../fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin .../node_modules/bootstrap/grunt/.jshintrc | 0 .../bootstrap/grunt/bs-commonjs-generator.js | 0 .../grunt/bs-glyphicons-data-generator.js | 0 .../bootstrap/grunt/bs-lessdoc-parser.js | 0 .../bootstrap/grunt/bs-raw-files-generator.js | 0 .../bootstrap/grunt/change-version.js | 0 .../bootstrap/grunt/configBridge.json | 0 .../bootstrap/grunt/npm-shrinkwrap.json | 0 .../bootstrap/grunt/sauce_browsers.yml | 0 .../node_modules/bootstrap/js/affix.js | 0 .../node_modules/bootstrap/js/alert.js | 0 .../node_modules/bootstrap/js/button.js | 0 .../node_modules/bootstrap/js/carousel.js | 0 .../node_modules/bootstrap/js/collapse.js | 0 .../node_modules/bootstrap/js/dropdown.js | 0 .../node_modules/bootstrap/js/modal.js | 0 .../node_modules/bootstrap/js/popover.js | 0 .../node_modules/bootstrap/js/scrollspy.js | 0 .../node_modules/bootstrap/js/tab.js | 0 .../node_modules/bootstrap/js/tooltip.js | 0 .../node_modules/bootstrap/js/transition.js | 0 .../node_modules/bootstrap/less/alerts.less | 0 .../node_modules/bootstrap/less/badges.less | 0 .../node_modules/bootstrap/less/bootstrap.less | 0 .../node_modules/bootstrap/less/breadcrumbs.less | 0 .../bootstrap/less/button-groups.less | 0 .../node_modules/bootstrap/less/buttons.less | 0 .../node_modules/bootstrap/less/carousel.less | 0 .../node_modules/bootstrap/less/close.less | 0 .../node_modules/bootstrap/less/code.less | 0 .../bootstrap/less/component-animations.less | 0 .../node_modules/bootstrap/less/dropdowns.less | 0 .../node_modules/bootstrap/less/forms.less | 0 .../node_modules/bootstrap/less/glyphicons.less | 0 .../node_modules/bootstrap/less/grid.less | 0 .../bootstrap/less/input-groups.less | 0 .../node_modules/bootstrap/less/jumbotron.less | 0 .../node_modules/bootstrap/less/labels.less | 0 .../node_modules/bootstrap/less/list-group.less | 0 .../node_modules/bootstrap/less/media.less | 0 .../node_modules/bootstrap/less/mixins.less | 0 .../bootstrap/less/mixins/alerts.less | 0 .../less/mixins/background-variant.less | 0 .../bootstrap/less/mixins/border-radius.less | 0 .../bootstrap/less/mixins/buttons.less | 0 .../bootstrap/less/mixins/center-block.less | 0 .../bootstrap/less/mixins/clearfix.less | 0 .../bootstrap/less/mixins/forms.less | 0 .../bootstrap/less/mixins/gradients.less | 0 .../bootstrap/less/mixins/grid-framework.less | 0 .../node_modules/bootstrap/less/mixins/grid.less | 0 .../bootstrap/less/mixins/hide-text.less | 0 .../bootstrap/less/mixins/image.less | 0 .../bootstrap/less/mixins/labels.less | 0 .../bootstrap/less/mixins/list-group.less | 0 .../bootstrap/less/mixins/nav-divider.less | 0 .../less/mixins/nav-vertical-align.less | 0 .../bootstrap/less/mixins/opacity.less | 0 .../bootstrap/less/mixins/pagination.less | 0 .../bootstrap/less/mixins/panels.less | 0 .../bootstrap/less/mixins/progress-bar.less | 0 .../bootstrap/less/mixins/reset-filter.less | 0 .../bootstrap/less/mixins/reset-text.less | 0 .../bootstrap/less/mixins/resize.less | 0 .../less/mixins/responsive-visibility.less | 0 .../node_modules/bootstrap/less/mixins/size.less | 0 .../bootstrap/less/mixins/tab-focus.less | 0 .../bootstrap/less/mixins/table-row.less | 0 .../bootstrap/less/mixins/text-emphasis.less | 0 .../bootstrap/less/mixins/text-overflow.less | 0 .../bootstrap/less/mixins/vendor-prefixes.less | 0 .../node_modules/bootstrap/less/modals.less | 0 .../node_modules/bootstrap/less/navbar.less | 0 .../node_modules/bootstrap/less/navs.less | 0 .../node_modules/bootstrap/less/normalize.less | 0 .../node_modules/bootstrap/less/pager.less | 0 .../node_modules/bootstrap/less/pagination.less | 0 .../node_modules/bootstrap/less/panels.less | 0 .../node_modules/bootstrap/less/popovers.less | 0 .../node_modules/bootstrap/less/print.less | 0 .../bootstrap/less/progress-bars.less | 0 .../bootstrap/less/responsive-embed.less | 0 .../bootstrap/less/responsive-utilities.less | 0 .../node_modules/bootstrap/less/scaffolding.less | 0 .../node_modules/bootstrap/less/tables.less | 0 .../node_modules/bootstrap/less/theme.less | 0 .../node_modules/bootstrap/less/thumbnails.less | 0 .../node_modules/bootstrap/less/tooltip.less | 0 .../node_modules/bootstrap/less/type.less | 0 .../node_modules/bootstrap/less/utilities.less | 0 .../node_modules/bootstrap/less/variables.less | 0 .../node_modules/bootstrap/less/wells.less | 0 .../node_modules/bootstrap/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/LICENSE | 0 .../{1_5 => v1.5}/node_modules/colors/ReadMe.md | 0 .../node_modules/colors/examples/normal-usage.js | 0 .../node_modules/colors/examples/safe-string.js | 0 .../node_modules/colors/lib/colors.js | 0 .../node_modules/colors/lib/custom/trap.js | 0 .../node_modules/colors/lib/custom/zalgo.js | 0 .../colors/lib/extendStringPrototype.js | 0 .../node_modules/colors/lib/index.js | 0 .../node_modules/colors/lib/maps/america.js | 0 .../node_modules/colors/lib/maps/rainbow.js | 0 .../node_modules/colors/lib/maps/random.js | 0 .../node_modules/colors/lib/maps/zebra.js | 0 .../node_modules/colors/lib/styles.js | 0 .../colors/lib/system/supports-colors.js | 0 .../node_modules/colors/package.json | 0 .../{1_5 => v1.5}/node_modules/colors/safe.js | 0 .../colors/themes/generic-logging.js | 0 .../{1_5 => v1.5}/node_modules/ejs/Jakefile | 0 .../{1_5 => v1.5}/node_modules/ejs/LICENSE | 0 .../{1_5 => v1.5}/node_modules/ejs/README.md | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/ejs.min.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/ejs.js | 0 .../{1_5 => v1.5}/node_modules/ejs/lib/utils.js | 0 .../{1_5 => v1.5}/node_modules/ejs/package.json | 0 .../{1_5 => v1.5}/node_modules/ejs/test/ejs.js | 0 .../node_modules/ejs/test/fixtures/backslash.ejs | 0 .../ejs/test/fixtures/backslash.html | 0 .../node_modules/ejs/test/fixtures/comments.ejs | 0 .../node_modules/ejs/test/fixtures/comments.html | 0 .../ejs/test/fixtures/consecutive-tags.ejs | 0 .../ejs/test/fixtures/consecutive-tags.html | 0 .../ejs/test/fixtures/double-quote.ejs | 0 .../ejs/test/fixtures/double-quote.html | 0 .../node_modules/ejs/test/fixtures/error.ejs | 0 .../node_modules/ejs/test/fixtures/error.out | 0 .../node_modules/ejs/test/fixtures/fail.ejs | 0 .../ejs/test/fixtures/hello-world.ejs | 0 .../ejs/test/fixtures/include-abspath.ejs | 0 .../ejs/test/fixtures/include-root.ejs | 0 .../ejs/test/fixtures/include-simple.ejs | 0 .../ejs/test/fixtures/include-simple.html | 0 .../ejs/test/fixtures/include.css.ejs | 0 .../ejs/test/fixtures/include.css.html | 0 .../node_modules/ejs/test/fixtures/include.ejs | 0 .../node_modules/ejs/test/fixtures/include.html | 0 .../ejs/test/fixtures/include_cache.ejs | 0 .../ejs/test/fixtures/include_cache.html | 0 .../test/fixtures/include_preprocessor.css.ejs | 0 .../test/fixtures/include_preprocessor.css.html | 0 .../ejs/test/fixtures/include_preprocessor.ejs | 0 .../ejs/test/fixtures/include_preprocessor.html | 0 .../test/fixtures/include_preprocessor_cache.ejs | 0 .../fixtures/include_preprocessor_cache.html | 0 .../fixtures/include_preprocessor_line_slurp.ejs | 0 .../include_preprocessor_line_slurp.html | 0 .../include_preprocessor_line_slurp_child.ejs | 0 .../ejs/test/fixtures/includes/bom.ejs | 0 .../ejs/test/fixtures/includes/menu-item.ejs | 0 .../ejs/test/fixtures/includes/menu/item.ejs | 0 .../node_modules/ejs/test/fixtures/literal.ejs | 0 .../node_modules/ejs/test/fixtures/literal.html | 0 .../node_modules/ejs/test/fixtures/menu.ejs | 0 .../node_modules/ejs/test/fixtures/menu.html | 0 .../ejs/test/fixtures/menu_preprocessor.ejs | 0 .../ejs/test/fixtures/menu_preprocessor.html | 0 .../node_modules/ejs/test/fixtures/menu_var.ejs | 0 .../node_modules/ejs/test/fixtures/messed.ejs | 0 .../node_modules/ejs/test/fixtures/messed.html | 0 .../node_modules/ejs/test/fixtures/newlines.ejs | 0 .../node_modules/ejs/test/fixtures/newlines.html | 0 .../ejs/test/fixtures/newlines.mixed.ejs | 0 .../ejs/test/fixtures/newlines.mixed.html | 0 .../ejs/test/fixtures/no.newlines.ejs | 0 .../ejs/test/fixtures/no.newlines.error.ejs | 0 .../ejs/test/fixtures/no.newlines.html | 0 .../ejs/test/fixtures/no.semicolons.ejs | 0 .../ejs/test/fixtures/no.semicolons.html | 0 .../node_modules/ejs/test/fixtures/para.ejs | 0 .../node_modules/ejs/test/fixtures/pet.ejs | 0 .../ejs/test/fixtures/rmWhitespace.ejs | 0 .../ejs/test/fixtures/rmWhitespace.html | 0 .../ejs/test/fixtures/single-quote.ejs | 0 .../ejs/test/fixtures/single-quote.html | 0 .../ejs/test/fixtures/space-and-tab-slurp.ejs | 0 .../ejs/test/fixtures/space-and-tab-slurp.html | 0 .../node_modules/ejs/test/fixtures/strict.ejs | 0 .../node_modules/ejs/test/fixtures/style.css | 0 .../ejs/test/fixtures/user-no-with.ejs | 0 .../node_modules/ejs/test/fixtures/user.ejs | 0 .../ejs/test/fixtures/with-context.ejs | 0 .../node_modules/ejs/test/mocha.opts | 0 .../node_modules/ejs/test/tmp/include.ejs | 0 .../ejs/test/tmp/include_preprocessor.ejs | 0 .../node_modules/ejs/test/tmp/renderFile.ejs | 0 .../node_modules/font-awesome/.npmignore | 0 .../node_modules/font-awesome/HELP-US-OUT.txt | 0 .../node_modules/font-awesome/README.md | 0 .../font-awesome/css/font-awesome.css | 0 .../font-awesome/css/font-awesome.css.map | 0 .../font-awesome/css/font-awesome.min.css | 0 .../font-awesome/fonts/FontAwesome.otf | Bin .../font-awesome/fonts/fontawesome-webfont.eot | Bin .../font-awesome/fonts/fontawesome-webfont.svg | 0 .../font-awesome/fonts/fontawesome-webfont.ttf | Bin .../font-awesome/fonts/fontawesome-webfont.woff | Bin .../font-awesome/fonts/fontawesome-webfont.woff2 | Bin .../node_modules/font-awesome/less/animated.less | 0 .../font-awesome/less/bordered-pulled.less | 0 .../node_modules/font-awesome/less/core.less | 0 .../font-awesome/less/fixed-width.less | 0 .../font-awesome/less/font-awesome.less | 0 .../node_modules/font-awesome/less/icons.less | 0 .../node_modules/font-awesome/less/larger.less | 0 .../node_modules/font-awesome/less/list.less | 0 .../node_modules/font-awesome/less/mixins.less | 0 .../node_modules/font-awesome/less/path.less | 0 .../font-awesome/less/rotated-flipped.less | 0 .../font-awesome/less/screen-reader.less | 0 .../node_modules/font-awesome/less/stacked.less | 0 .../font-awesome/less/variables.less | 0 .../node_modules/font-awesome/package.json | 0 .../font-awesome/scss/_animated.scss | 0 .../font-awesome/scss/_bordered-pulled.scss | 0 .../node_modules/font-awesome/scss/_core.scss | 0 .../font-awesome/scss/_fixed-width.scss | 0 .../node_modules/font-awesome/scss/_icons.scss | 0 .../node_modules/font-awesome/scss/_larger.scss | 0 .../node_modules/font-awesome/scss/_list.scss | 0 .../node_modules/font-awesome/scss/_mixins.scss | 0 .../node_modules/font-awesome/scss/_path.scss | 0 .../font-awesome/scss/_rotated-flipped.scss | 0 .../font-awesome/scss/_screen-reader.scss | 0 .../node_modules/font-awesome/scss/_stacked.scss | 0 .../font-awesome/scss/_variables.scss | 0 .../font-awesome/scss/font-awesome.scss | 0 .../node_modules/highlight.js/LICENSE | 0 .../node_modules/highlight.js/README.md | 0 .../node_modules/highlight.js/docs/api.rst | 0 .../highlight.js/docs/building-testing.rst | 0 .../highlight.js/docs/css-classes-reference.rst | 0 .../node_modules/highlight.js/docs/index.rst | 0 .../highlight.js/docs/language-contribution.rst | 0 .../highlight.js/docs/language-guide.rst | 0 .../highlight.js/docs/language-requests.rst | 0 .../highlight.js/docs/line-numbers.rst | 0 .../node_modules/highlight.js/docs/reference.rst | 0 .../highlight.js/docs/release-process.rst | 0 .../highlight.js/docs/style-guide.rst | 0 .../node_modules/highlight.js/lib/highlight.js | 0 .../node_modules/highlight.js/lib/index.js | 0 .../highlight.js/lib/languages/1c.js | 0 .../highlight.js/lib/languages/abnf.js | 0 .../highlight.js/lib/languages/accesslog.js | 0 .../highlight.js/lib/languages/actionscript.js | 0 .../highlight.js/lib/languages/ada.js | 0 .../highlight.js/lib/languages/apache.js | 0 .../highlight.js/lib/languages/applescript.js | 0 .../highlight.js/lib/languages/arduino.js | 0 .../highlight.js/lib/languages/armasm.js | 0 .../highlight.js/lib/languages/asciidoc.js | 0 .../highlight.js/lib/languages/aspectj.js | 0 .../highlight.js/lib/languages/autohotkey.js | 0 .../highlight.js/lib/languages/autoit.js | 0 .../highlight.js/lib/languages/avrasm.js | 0 .../highlight.js/lib/languages/awk.js | 0 .../highlight.js/lib/languages/axapta.js | 0 .../highlight.js/lib/languages/bash.js | 0 .../highlight.js/lib/languages/basic.js | 0 .../highlight.js/lib/languages/bnf.js | 0 .../highlight.js/lib/languages/brainfuck.js | 0 .../highlight.js/lib/languages/cal.js | 0 .../highlight.js/lib/languages/capnproto.js | 0 .../highlight.js/lib/languages/ceylon.js | 0 .../highlight.js/lib/languages/clean.js | 0 .../highlight.js/lib/languages/clojure-repl.js | 0 .../highlight.js/lib/languages/clojure.js | 0 .../highlight.js/lib/languages/cmake.js | 0 .../highlight.js/lib/languages/coffeescript.js | 0 .../highlight.js/lib/languages/coq.js | 0 .../highlight.js/lib/languages/cos.js | 0 .../highlight.js/lib/languages/cpp.js | 0 .../highlight.js/lib/languages/crmsh.js | 0 .../highlight.js/lib/languages/crystal.js | 0 .../highlight.js/lib/languages/cs.js | 0 .../highlight.js/lib/languages/csp.js | 0 .../highlight.js/lib/languages/css.js | 0 .../node_modules/highlight.js/lib/languages/d.js | 0 .../highlight.js/lib/languages/dart.js | 0 .../highlight.js/lib/languages/delphi.js | 0 .../highlight.js/lib/languages/diff.js | 0 .../highlight.js/lib/languages/django.js | 0 .../highlight.js/lib/languages/dns.js | 0 .../highlight.js/lib/languages/dockerfile.js | 0 .../highlight.js/lib/languages/dos.js | 0 .../highlight.js/lib/languages/dsconfig.js | 0 .../highlight.js/lib/languages/dts.js | 0 .../highlight.js/lib/languages/dust.js | 0 .../highlight.js/lib/languages/ebnf.js | 0 .../highlight.js/lib/languages/elixir.js | 0 .../highlight.js/lib/languages/elm.js | 0 .../highlight.js/lib/languages/erb.js | 0 .../highlight.js/lib/languages/erlang-repl.js | 0 .../highlight.js/lib/languages/erlang.js | 0 .../highlight.js/lib/languages/excel.js | 0 .../highlight.js/lib/languages/fix.js | 0 .../highlight.js/lib/languages/flix.js | 0 .../highlight.js/lib/languages/fortran.js | 0 .../highlight.js/lib/languages/fsharp.js | 0 .../highlight.js/lib/languages/gams.js | 0 .../highlight.js/lib/languages/gauss.js | 0 .../highlight.js/lib/languages/gcode.js | 0 .../highlight.js/lib/languages/gherkin.js | 0 .../highlight.js/lib/languages/glsl.js | 0 .../highlight.js/lib/languages/go.js | 0 .../highlight.js/lib/languages/golo.js | 0 .../highlight.js/lib/languages/gradle.js | 0 .../highlight.js/lib/languages/groovy.js | 0 .../highlight.js/lib/languages/haml.js | 0 .../highlight.js/lib/languages/handlebars.js | 0 .../highlight.js/lib/languages/haskell.js | 0 .../highlight.js/lib/languages/haxe.js | 0 .../highlight.js/lib/languages/hsp.js | 0 .../highlight.js/lib/languages/htmlbars.js | 0 .../highlight.js/lib/languages/http.js | 0 .../highlight.js/lib/languages/inform7.js | 0 .../highlight.js/lib/languages/ini.js | 0 .../highlight.js/lib/languages/irpf90.js | 0 .../highlight.js/lib/languages/java.js | 0 .../highlight.js/lib/languages/javascript.js | 0 .../highlight.js/lib/languages/json.js | 0 .../highlight.js/lib/languages/julia.js | 0 .../highlight.js/lib/languages/kotlin.js | 0 .../highlight.js/lib/languages/lasso.js | 0 .../highlight.js/lib/languages/ldif.js | 0 .../highlight.js/lib/languages/less.js | 0 .../highlight.js/lib/languages/lisp.js | 0 .../highlight.js/lib/languages/livecodeserver.js | 0 .../highlight.js/lib/languages/livescript.js | 0 .../highlight.js/lib/languages/llvm.js | 0 .../highlight.js/lib/languages/lsl.js | 0 .../highlight.js/lib/languages/lua.js | 0 .../highlight.js/lib/languages/makefile.js | 0 .../highlight.js/lib/languages/markdown.js | 0 .../highlight.js/lib/languages/mathematica.js | 0 .../highlight.js/lib/languages/matlab.js | 0 .../highlight.js/lib/languages/maxima.js | 0 .../highlight.js/lib/languages/mel.js | 0 .../highlight.js/lib/languages/mercury.js | 0 .../highlight.js/lib/languages/mipsasm.js | 0 .../highlight.js/lib/languages/mizar.js | 0 .../highlight.js/lib/languages/mojolicious.js | 0 .../highlight.js/lib/languages/monkey.js | 0 .../highlight.js/lib/languages/moonscript.js | 0 .../highlight.js/lib/languages/nginx.js | 0 .../highlight.js/lib/languages/nimrod.js | 0 .../highlight.js/lib/languages/nix.js | 0 .../highlight.js/lib/languages/nsis.js | 0 .../highlight.js/lib/languages/objectivec.js | 0 .../highlight.js/lib/languages/ocaml.js | 0 .../highlight.js/lib/languages/openscad.js | 0 .../highlight.js/lib/languages/oxygene.js | 0 .../highlight.js/lib/languages/parser3.js | 0 .../highlight.js/lib/languages/perl.js | 0 .../highlight.js/lib/languages/pf.js | 0 .../highlight.js/lib/languages/php.js | 0 .../highlight.js/lib/languages/pony.js | 0 .../highlight.js/lib/languages/powershell.js | 0 .../highlight.js/lib/languages/processing.js | 0 .../highlight.js/lib/languages/profile.js | 0 .../highlight.js/lib/languages/prolog.js | 0 .../highlight.js/lib/languages/protobuf.js | 0 .../highlight.js/lib/languages/puppet.js | 0 .../highlight.js/lib/languages/purebasic.js | 0 .../highlight.js/lib/languages/python.js | 0 .../node_modules/highlight.js/lib/languages/q.js | 0 .../highlight.js/lib/languages/qml.js | 0 .../node_modules/highlight.js/lib/languages/r.js | 0 .../highlight.js/lib/languages/rib.js | 0 .../highlight.js/lib/languages/roboconf.js | 0 .../highlight.js/lib/languages/rsl.js | 0 .../highlight.js/lib/languages/ruby.js | 0 .../highlight.js/lib/languages/ruleslanguage.js | 0 .../highlight.js/lib/languages/rust.js | 0 .../highlight.js/lib/languages/scala.js | 0 .../highlight.js/lib/languages/scheme.js | 0 .../highlight.js/lib/languages/scilab.js | 0 .../highlight.js/lib/languages/scss.js | 0 .../highlight.js/lib/languages/smali.js | 0 .../highlight.js/lib/languages/smalltalk.js | 0 .../highlight.js/lib/languages/sml.js | 0 .../highlight.js/lib/languages/sqf.js | 0 .../highlight.js/lib/languages/sql.js | 0 .../highlight.js/lib/languages/stan.js | 0 .../highlight.js/lib/languages/stata.js | 0 .../highlight.js/lib/languages/step21.js | 0 .../highlight.js/lib/languages/stylus.js | 0 .../highlight.js/lib/languages/subunit.js | 0 .../highlight.js/lib/languages/swift.js | 0 .../highlight.js/lib/languages/taggerscript.js | 0 .../highlight.js/lib/languages/tap.js | 0 .../highlight.js/lib/languages/tcl.js | 0 .../highlight.js/lib/languages/tex.js | 0 .../highlight.js/lib/languages/thrift.js | 0 .../highlight.js/lib/languages/tp.js | 0 .../highlight.js/lib/languages/twig.js | 0 .../highlight.js/lib/languages/typescript.js | 0 .../highlight.js/lib/languages/vala.js | 0 .../highlight.js/lib/languages/vbnet.js | 0 .../highlight.js/lib/languages/vbscript-html.js | 0 .../highlight.js/lib/languages/vbscript.js | 0 .../highlight.js/lib/languages/verilog.js | 0 .../highlight.js/lib/languages/vhdl.js | 0 .../highlight.js/lib/languages/vim.js | 0 .../highlight.js/lib/languages/x86asm.js | 0 .../highlight.js/lib/languages/xl.js | 0 .../highlight.js/lib/languages/xml.js | 0 .../highlight.js/lib/languages/xquery.js | 0 .../highlight.js/lib/languages/yaml.js | 0 .../highlight.js/lib/languages/zephir.js | 0 .../node_modules/highlight.js/package.json | 0 .../node_modules/highlight.js/styles/agate.css | 0 .../highlight.js/styles/androidstudio.css | 0 .../highlight.js/styles/arduino-light.css | 0 .../node_modules/highlight.js/styles/arta.css | 0 .../node_modules/highlight.js/styles/ascetic.css | 0 .../highlight.js/styles/atelier-cave-dark.css | 0 .../highlight.js/styles/atelier-cave-light.css | 0 .../highlight.js/styles/atelier-dune-dark.css | 0 .../highlight.js/styles/atelier-dune-light.css | 0 .../highlight.js/styles/atelier-estuary-dark.css | 0 .../styles/atelier-estuary-light.css | 0 .../highlight.js/styles/atelier-forest-dark.css | 0 .../highlight.js/styles/atelier-forest-light.css | 0 .../highlight.js/styles/atelier-heath-dark.css | 0 .../highlight.js/styles/atelier-heath-light.css | 0 .../styles/atelier-lakeside-dark.css | 0 .../styles/atelier-lakeside-light.css | 0 .../highlight.js/styles/atelier-plateau-dark.css | 0 .../styles/atelier-plateau-light.css | 0 .../highlight.js/styles/atelier-savanna-dark.css | 0 .../styles/atelier-savanna-light.css | 0 .../highlight.js/styles/atelier-seaside-dark.css | 0 .../styles/atelier-seaside-light.css | 0 .../styles/atelier-sulphurpool-dark.css | 0 .../styles/atelier-sulphurpool-light.css | 0 .../highlight.js/styles/atom-one-dark.css | 0 .../highlight.js/styles/atom-one-light.css | 0 .../highlight.js/styles/brown-paper.css | 0 .../highlight.js/styles/brown-papersq.png | Bin .../highlight.js/styles/codepen-embed.css | 0 .../highlight.js/styles/color-brewer.css | 0 .../node_modules/highlight.js/styles/darcula.css | 0 .../node_modules/highlight.js/styles/dark.css | 0 .../node_modules/highlight.js/styles/darkula.css | 0 .../node_modules/highlight.js/styles/default.css | 0 .../node_modules/highlight.js/styles/docco.css | 0 .../node_modules/highlight.js/styles/dracula.css | 0 .../node_modules/highlight.js/styles/far.css | 0 .../highlight.js/styles/foundation.css | 0 .../highlight.js/styles/github-gist.css | 0 .../node_modules/highlight.js/styles/github.css | 0 .../highlight.js/styles/googlecode.css | 0 .../highlight.js/styles/grayscale.css | 0 .../highlight.js/styles/gruvbox-dark.css | 0 .../highlight.js/styles/gruvbox-light.css | 0 .../highlight.js/styles/hopscotch.css | 0 .../node_modules/highlight.js/styles/hybrid.css | 0 .../node_modules/highlight.js/styles/idea.css | 0 .../highlight.js/styles/ir-black.css | 0 .../highlight.js/styles/kimbie.dark.css | 0 .../highlight.js/styles/kimbie.light.css | 0 .../node_modules/highlight.js/styles/magula.css | 0 .../highlight.js/styles/mono-blue.css | 0 .../highlight.js/styles/monokai-sublime.css | 0 .../node_modules/highlight.js/styles/monokai.css | 0 .../highlight.js/styles/obsidian.css | 0 .../node_modules/highlight.js/styles/ocean.css | 0 .../highlight.js/styles/paraiso-dark.css | 0 .../highlight.js/styles/paraiso-light.css | 0 .../highlight.js/styles/pojoaque.css | 0 .../highlight.js/styles/pojoaque.jpg | Bin .../highlight.js/styles/purebasic.css | 0 .../highlight.js/styles/qtcreator_dark.css | 0 .../highlight.js/styles/qtcreator_light.css | 0 .../highlight.js/styles/railscasts.css | 0 .../node_modules/highlight.js/styles/rainbow.css | 0 .../highlight.js/styles/school-book.css | 0 .../highlight.js/styles/school-book.png | Bin .../highlight.js/styles/solarized-dark.css | 0 .../highlight.js/styles/solarized-light.css | 0 .../highlight.js/styles/sunburst.css | 0 .../highlight.js/styles/tomorrow-night-blue.css | 0 .../styles/tomorrow-night-bright.css | 0 .../styles/tomorrow-night-eighties.css | 0 .../highlight.js/styles/tomorrow-night.css | 0 .../highlight.js/styles/tomorrow.css | 0 .../node_modules/highlight.js/styles/vs.css | 0 .../node_modules/highlight.js/styles/xcode.css | 0 .../node_modules/highlight.js/styles/xt256.css | 0 .../node_modules/highlight.js/styles/zenburn.css | 0 .../node_modules/jquery.scrollto/.jscsrc | 0 .../node_modules/jquery.scrollto/.jshintrc | 0 .../node_modules/jquery.scrollto/.npmignore | 0 .../node_modules/jquery.scrollto/CHANGELOG.md | 0 .../node_modules/jquery.scrollto/LICENSE | 0 .../node_modules/jquery.scrollto/README.md | 0 .../node_modules/jquery.scrollto/bower.json | 0 .../node_modules/jquery.scrollto/composer.json | 0 .../jquery.scrollto/demo/css/style.css | 0 .../jquery.scrollto/demo/css/style.old.css | 0 .../node_modules/jquery.scrollto/demo/index.html | 0 .../jquery.scrollto/demo/index.old.html | 0 .../jquery.scrollto/jquery.scrollTo.js | 0 .../jquery.scrollto/jquery.scrollTo.min.js | 0 .../node_modules/jquery.scrollto/package.json | 0 .../jquery.scrollto/tests/ElemMaxY-compat.html | 0 .../jquery.scrollto/tests/ElemMaxY-quirks.html | 0 .../jquery.scrollto/tests/WinMaxY-compat.html | 0 .../jquery.scrollto/tests/WinMaxY-quirks.html | 0 .../tests/WinMaxY-to-iframe-compat.html | 0 .../tests/WinMaxY-to-iframe-quirks.html | 0 .../tests/WinMaxY-with-iframe-compat.html | 0 .../tests/WinMaxY-with-iframe-quirks.html | 0 .../jquery.scrollto/tests/index.html | 0 .../node_modules/jquery.scrollto/tests/test.js | 0 .../node_modules/jquery/AUTHORS.txt | 0 .../node_modules/jquery/LICENSE.txt | 0 .../{1_5 => v1.5}/node_modules/jquery/README.md | 0 .../{1_5 => v1.5}/node_modules/jquery/bower.json | 0 .../node_modules/jquery/dist/core.js | 0 .../node_modules/jquery/dist/jquery.js | 0 .../node_modules/jquery/dist/jquery.min.js | 0 .../node_modules/jquery/dist/jquery.min.map | 0 .../node_modules/jquery/dist/jquery.slim.js | 0 .../node_modules/jquery/dist/jquery.slim.min.js | 0 .../node_modules/jquery/dist/jquery.slim.min.map | 0 .../jquery/external/sizzle/LICENSE.txt | 0 .../jquery/external/sizzle/dist/sizzle.js | 0 .../jquery/external/sizzle/dist/sizzle.min.js | 0 .../jquery/external/sizzle/dist/sizzle.min.map | 0 .../node_modules/jquery/package.json | 0 .../node_modules/jquery/src/.eslintrc.json | 0 .../node_modules/jquery/src/ajax.js | 0 .../node_modules/jquery/src/ajax/jsonp.js | 0 .../node_modules/jquery/src/ajax/load.js | 0 .../node_modules/jquery/src/ajax/parseXML.js | 0 .../node_modules/jquery/src/ajax/script.js | 0 .../node_modules/jquery/src/ajax/var/location.js | 0 .../node_modules/jquery/src/ajax/var/nonce.js | 0 .../node_modules/jquery/src/ajax/var/rquery.js | 0 .../node_modules/jquery/src/ajax/xhr.js | 0 .../node_modules/jquery/src/attributes.js | 0 .../node_modules/jquery/src/attributes/attr.js | 0 .../jquery/src/attributes/classes.js | 0 .../node_modules/jquery/src/attributes/prop.js | 0 .../jquery/src/attributes/support.js | 0 .../node_modules/jquery/src/attributes/val.js | 0 .../node_modules/jquery/src/callbacks.js | 0 .../node_modules/jquery/src/core.js | 0 .../node_modules/jquery/src/core/DOMEval.js | 0 .../node_modules/jquery/src/core/access.js | 0 .../node_modules/jquery/src/core/init.js | 0 .../node_modules/jquery/src/core/parseHTML.js | 0 .../jquery/src/core/ready-no-deferred.js | 0 .../node_modules/jquery/src/core/ready.js | 0 .../jquery/src/core/readyException.js | 0 .../jquery/src/core/stripAndCollapse.js | 0 .../node_modules/jquery/src/core/support.js | 0 .../jquery/src/core/var/rsingleTag.js | 0 .../{1_5 => v1.5}/node_modules/jquery/src/css.js | 0 .../node_modules/jquery/src/css/addGetHookIf.js | 0 .../node_modules/jquery/src/css/adjustCSS.js | 0 .../node_modules/jquery/src/css/curCSS.js | 0 .../jquery/src/css/hiddenVisibleSelectors.js | 0 .../node_modules/jquery/src/css/showHide.js | 0 .../node_modules/jquery/src/css/support.js | 0 .../node_modules/jquery/src/css/var/cssExpand.js | 0 .../node_modules/jquery/src/css/var/getStyles.js | 0 .../jquery/src/css/var/isHiddenWithinTree.js | 0 .../node_modules/jquery/src/css/var/rmargin.js | 0 .../node_modules/jquery/src/css/var/rnumnonpx.js | 0 .../node_modules/jquery/src/css/var/swap.js | 0 .../node_modules/jquery/src/data.js | 0 .../node_modules/jquery/src/data/Data.js | 0 .../jquery/src/data/var/acceptData.js | 0 .../node_modules/jquery/src/data/var/dataPriv.js | 0 .../node_modules/jquery/src/data/var/dataUser.js | 0 .../node_modules/jquery/src/deferred.js | 0 .../jquery/src/deferred/exceptionHook.js | 0 .../node_modules/jquery/src/deprecated.js | 0 .../node_modules/jquery/src/dimensions.js | 0 .../node_modules/jquery/src/effects.js | 0 .../node_modules/jquery/src/effects/Tween.js | 0 .../jquery/src/effects/animatedSelector.js | 0 .../node_modules/jquery/src/event.js | 0 .../node_modules/jquery/src/event/ajax.js | 0 .../node_modules/jquery/src/event/alias.js | 0 .../node_modules/jquery/src/event/focusin.js | 0 .../node_modules/jquery/src/event/support.js | 0 .../node_modules/jquery/src/event/trigger.js | 0 .../node_modules/jquery/src/exports/amd.js | 0 .../node_modules/jquery/src/exports/global.js | 0 .../node_modules/jquery/src/jquery.js | 0 .../node_modules/jquery/src/manipulation.js | 0 .../jquery/src/manipulation/_evalUrl.js | 0 .../jquery/src/manipulation/buildFragment.js | 0 .../jquery/src/manipulation/getAll.js | 0 .../jquery/src/manipulation/setGlobalEval.js | 0 .../jquery/src/manipulation/support.js | 0 .../src/manipulation/var/rcheckableType.js | 0 .../jquery/src/manipulation/var/rscriptType.js | 0 .../jquery/src/manipulation/var/rtagName.js | 0 .../jquery/src/manipulation/wrapMap.js | 0 .../node_modules/jquery/src/offset.js | 0 .../node_modules/jquery/src/queue.js | 0 .../node_modules/jquery/src/queue/delay.js | 0 .../node_modules/jquery/src/selector-native.js | 0 .../node_modules/jquery/src/selector-sizzle.js | 0 .../node_modules/jquery/src/selector.js | 0 .../node_modules/jquery/src/serialize.js | 0 .../node_modules/jquery/src/traversing.js | 0 .../jquery/src/traversing/findFilter.js | 0 .../jquery/src/traversing/var/dir.js | 0 .../jquery/src/traversing/var/rneedsContext.js | 0 .../jquery/src/traversing/var/siblings.js | 0 .../jquery/src/var/ObjectFunctionString.js | 0 .../node_modules/jquery/src/var/arr.js | 0 .../node_modules/jquery/src/var/class2type.js | 0 .../node_modules/jquery/src/var/concat.js | 0 .../node_modules/jquery/src/var/document.js | 0 .../jquery/src/var/documentElement.js | 0 .../node_modules/jquery/src/var/fnToString.js | 0 .../node_modules/jquery/src/var/getProto.js | 0 .../node_modules/jquery/src/var/hasOwn.js | 0 .../node_modules/jquery/src/var/indexOf.js | 0 .../node_modules/jquery/src/var/pnum.js | 0 .../node_modules/jquery/src/var/push.js | 0 .../node_modules/jquery/src/var/rcssNum.js | 0 .../node_modules/jquery/src/var/rnothtmlwhite.js | 0 .../node_modules/jquery/src/var/slice.js | 0 .../node_modules/jquery/src/var/support.js | 0 .../node_modules/jquery/src/var/toString.js | 0 .../node_modules/jquery/src/wrap.js | 0 .../{1_5 => v1.5}/node_modules/marked/.npmignore | 0 .../node_modules/marked/Gulpfile.js | 0 .../{1_5 => v1.5}/node_modules/marked/LICENSE | 0 .../{1_5 => v1.5}/node_modules/marked/Makefile | 0 .../{1_5 => v1.5}/node_modules/marked/README.md | 0 .../{1_5 => v1.5}/node_modules/marked/bin/marked | 0 .../{1_5 => v1.5}/node_modules/marked/bower.json | 0 .../node_modules/marked/component.json | 0 .../node_modules/marked/doc/broken.md | 0 .../node_modules/marked/doc/todo.md | 0 .../{1_5 => v1.5}/node_modules/marked/index.js | 0 .../node_modules/marked/lib/marked.js | 0 .../node_modules/marked/man/marked.1 | 0 .../node_modules/marked/marked.min.js | 0 .../node_modules/marked/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/.npmignore | 0 .../{1_5 => v1.5}/node_modules/mime/LICENSE | 0 .../{1_5 => v1.5}/node_modules/mime/README.md | 0 .../node_modules/mime/build/build.js | 0 .../node_modules/mime/build/test.js | 0 .../{1_5 => v1.5}/node_modules/mime/cli.js | 0 .../{1_5 => v1.5}/node_modules/mime/mime.js | 0 .../{1_5 => v1.5}/node_modules/mime/package.json | 0 .../{1_5 => v1.5}/node_modules/mime/types.json | 0 .../{1_5 => v1.5}/node_modules/minimist/LICENSE | 0 .../node_modules/minimist/example/parse.js | 0 .../{1_5 => v1.5}/node_modules/minimist/index.js | 0 .../node_modules/minimist/package.json | 0 .../node_modules/minimist/readme.markdown | 0 .../node_modules/minimist/test/bool.js | 0 .../node_modules/minimist/test/dash.js | 0 .../node_modules/minimist/test/default_bool.js | 0 .../node_modules/minimist/test/dotted.js | 0 .../node_modules/minimist/test/long.js | 0 .../node_modules/minimist/test/num.js | 0 .../node_modules/minimist/test/parse.js | 0 .../node_modules/minimist/test/parse_modified.js | 0 .../node_modules/minimist/test/short.js | 0 .../node_modules/minimist/test/whitespace.js | 0 .../node_modules/node-static/.npmignore | 0 .../node_modules/node-static/LICENSE | 0 .../node_modules/node-static/README.md | 0 .../node-static/benchmark/node-static-0.3.0.txt | 0 .../node_modules/node-static/bin/cli.js | 0 .../node-static/examples/file-server.js | 0 .../node_modules/node-static/lib/node-static.js | 0 .../node-static/lib/node-static/util.js | 0 .../node_modules/node-static/package.json | 0 .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 0 .../node-static/test/fixtures/index.html | 0 .../node-static/test/fixtures/there/index.html | 0 .../test/integration/node-static-test.js | 0 .../{1_5 => v1.5}/node_modules/optimist/LICENSE | 0 .../node_modules/optimist/example/bool.js | 0 .../optimist/example/boolean_double.js | 0 .../optimist/example/boolean_single.js | 0 .../optimist/example/default_hash.js | 0 .../optimist/example/default_singles.js | 0 .../node_modules/optimist/example/divide.js | 0 .../node_modules/optimist/example/line_count.js | 0 .../optimist/example/line_count_options.js | 0 .../optimist/example/line_count_wrap.js | 0 .../node_modules/optimist/example/nonopt.js | 0 .../node_modules/optimist/example/reflect.js | 0 .../node_modules/optimist/example/short.js | 0 .../node_modules/optimist/example/string.js | 0 .../optimist/example/usage-options.js | 0 .../node_modules/optimist/example/xup.js | 0 .../{1_5 => v1.5}/node_modules/optimist/index.js | 0 .../node_modules/optimist/package.json | 0 .../node_modules/optimist/readme.markdown | 0 .../node_modules/optimist/test/_.js | 0 .../node_modules/optimist/test/_/argv.js | 0 .../node_modules/optimist/test/_/bin.js | 0 .../node_modules/optimist/test/dash.js | 0 .../node_modules/optimist/test/parse.js | 0 .../node_modules/optimist/test/parse_modified.js | 0 .../node_modules/optimist/test/short.js | 0 .../node_modules/optimist/test/usage.js | 0 .../node_modules/optimist/test/whitespace.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/LICENSE | 0 .../node_modules/wordwrap/README.markdown | 0 .../node_modules/wordwrap/example/center.js | 0 .../node_modules/wordwrap/example/meat.js | 0 .../{1_5 => v1.5}/node_modules/wordwrap/index.js | 0 .../node_modules/wordwrap/package.json | 0 .../node_modules/wordwrap/test/break.js | 0 .../node_modules/wordwrap/test/idleness.txt | 0 .../node_modules/wordwrap/test/wrap.js | 0 .../kubectl/{1_5 => v1.5}/package.json | 0 .../kubectl/{1_5 => v1.5}/runbrodocs.sh | 0 docs/user-guide/kubectl/{1_5 => v1.5}/scroll.js | 0 docs/user-guide/kubectl/{1_5 => v1.5}/server.js | 0 .../kubectl/{1_5 => v1.5}/stylesheet.css | 0 .../kubectl/{1_5 => v1.5}/tabvisibility.js | 0 verify-docs-format.sh | 10 +++++----- 3768 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 docs/api-reference/1_5/node_modules/node-static/.package.json.un~ delete mode 100644 docs/api-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ rename docs/api-reference/{1_5 => v1.5}/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/actions.js (100%) rename docs/api-reference/{1_5 => v1.5}/brodoc.js (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_cluster.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_config.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_definitions.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_binding_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_binding_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_capabilities_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_capabilities_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentcondition_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentcondition_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmap_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmap_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmaplist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_configmaplist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_container_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_container_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerimage_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerimage_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerport_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerport_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstate_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstate_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_containerstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjob_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjob_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjoblist_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjoblist_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjobspec_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjobspec_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjobstatus_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_cronjobstatus_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointport_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointport_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpoints_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpoints_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointslist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointslist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_envvar_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_envvar_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_envvarsource_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_envvarsource_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_event_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_event_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_event_versioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_event_versioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eventlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eventlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eventsource_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eventsource_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_execaction_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_execaction_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_handler_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_handler_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_httpheader_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_httpheader_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_info_version_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_info_version_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_intorstring_intstr_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_intorstring_intstr_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_job_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_joblist_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobspec_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobtemplatespec_v2alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_jobtemplatespec_v2alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_lifecycle_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_lifecycle_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrange_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrange_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespace_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespace_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_node_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_node_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodecondition_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodecondition_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodestatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodestatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectmeta_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectmeta_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectreference_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_objectreference_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ownerreference_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_ownerreference_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_patch_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_patch_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_pod_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_pod_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podcondition_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podcondition_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplate_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplate_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_preconditions_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_preconditions_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_probe_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_probe_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_quantity_resource_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_quantity_resource_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rawextension_runtime_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rawextension_runtime_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequota_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequota_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_role_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_role_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scale_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scale_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scale_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scale_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secret_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secret_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secretlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_secretlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_securitycontext_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_securitycontext_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_service_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_service_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicelist_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicelist_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceport_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_serviceport_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicespec_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicespec_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicestatus_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_servicestatus_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_status_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_status_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_time_unversioned_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_time_unversioned_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_volume_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_volume_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_volumemount_v1_concept.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_generated_volumemount_v1_definition.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_meta.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_oldversions.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_overview.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_servicediscovery.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/_workloads.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/deployment-original.md (100%) rename docs/api-reference/{1_5 => v1.5}/documents/deployment.md (100%) rename docs/api-reference/{1_5 => v1.5}/index.html (100%) rename docs/api-reference/{1_5 => v1.5}/jsconfig.json (100%) rename docs/api-reference/{1_5 => v1.5}/manifest.json (100%) rename docs/api-reference/{1_5 => v1.5}/markedDecorations.js (100%) rename docs/api-reference/{1_5 => v1.5}/navData.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/.bin/marked (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/.bin/mime (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/.bin/static (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/CHANGELOG.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/Gruntfile.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/npm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/.jshintrc (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-commonjs-generator.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-lessdoc-parser.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-raw-files-generator.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/change-version.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/configBridge.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/npm-shrinkwrap.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/sauce_browsers.yml (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/affix.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/alert.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/button.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/carousel.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/collapse.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/dropdown.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/modal.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/popover.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/scrollspy.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/tab.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/tooltip.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/js/transition.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/alerts.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/badges.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/bootstrap.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/breadcrumbs.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/button-groups.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/buttons.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/carousel.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/close.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/code.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/component-animations.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/dropdowns.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/forms.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/glyphicons.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/grid.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/input-groups.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/jumbotron.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/labels.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/list-group.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/media.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/alerts.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/background-variant.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/border-radius.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/buttons.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/center-block.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/clearfix.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/forms.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/gradients.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid-framework.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/hide-text.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/image.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/labels.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/list-group.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-divider.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-vertical-align.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/opacity.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/pagination.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/panels.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/progress-bar.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-filter.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-text.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/resize.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/responsive-visibility.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/size.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/tab-focus.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/table-row.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-emphasis.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-overflow.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/vendor-prefixes.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/modals.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/navbar.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/navs.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/normalize.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/pager.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/pagination.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/panels.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/popovers.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/print.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/progress-bars.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-embed.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-utilities.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/scaffolding.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/tables.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/theme.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/thumbnails.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/tooltip.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/type.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/utilities.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/variables.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/less/wells.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/bootstrap/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/ReadMe.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/examples/normal-usage.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/examples/safe-string.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/colors.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/custom/trap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/custom/zalgo.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/extendStringPrototype.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/america.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/rainbow.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/random.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/zebra.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/styles.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/lib/system/supports-colors.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/safe.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/colors/themes/generic-logging.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/Jakefile (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/ejs.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/ejs.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/lib/ejs.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/lib/utils.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/ejs.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.out (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/fail.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/hello-world.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-abspath.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-root.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/bom.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu-item.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu/item.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_var.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.error.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/para.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/pet.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/strict.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/style.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user-no-with.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/with-context.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/mocha.opts (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/include.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/include_preprocessor.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/renderFile.ejs (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/.npmignore (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/HELP-US-OUT.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.min.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/FontAwesome.otf (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.eot (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.svg (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.ttf (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/animated.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/bordered-pulled.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/core.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/fixed-width.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/font-awesome.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/icons.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/larger.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/list.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/mixins.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/path.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/rotated-flipped.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/screen-reader.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/stacked.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/less/variables.less (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_animated.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_bordered-pulled.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_core.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_fixed-width.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_icons.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_larger.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_list.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_mixins.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_path.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_rotated-flipped.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_screen-reader.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_stacked.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_variables.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/font-awesome.scss (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/api.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/building-testing.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/css-classes-reference.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/index.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-contribution.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-guide.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-requests.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/line-numbers.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/reference.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/release-process.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/style-guide.rst (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/highlight.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/1c.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/abnf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/accesslog.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/actionscript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ada.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/apache.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/applescript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/arduino.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/armasm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/asciidoc.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/aspectj.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autohotkey.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autoit.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/avrasm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/awk.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/axapta.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bash.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/basic.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bnf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/brainfuck.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cal.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/capnproto.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ceylon.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clean.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure-repl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cmake.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coffeescript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coq.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cos.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cpp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crmsh.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crystal.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cs.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/csp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/css.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/d.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dart.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/delphi.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/diff.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/django.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dns.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dockerfile.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dos.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dsconfig.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dts.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dust.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ebnf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elixir.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erb.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang-repl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/excel.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fix.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/flix.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fortran.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fsharp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gams.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gauss.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gcode.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gherkin.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/glsl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/go.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/golo.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gradle.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/groovy.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/handlebars.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haskell.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haxe.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/hsp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/htmlbars.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/http.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/inform7.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ini.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/irpf90.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/java.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/javascript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/json.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/julia.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/kotlin.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lasso.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ldif.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/less.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lisp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livecodeserver.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livescript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/llvm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lsl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lua.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/makefile.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/markdown.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mathematica.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/matlab.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/maxima.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mel.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mercury.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mipsasm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mizar.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mojolicious.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/monkey.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/moonscript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nginx.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nimrod.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nix.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nsis.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/objectivec.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ocaml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/openscad.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/oxygene.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/parser3.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/perl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/php.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pony.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/powershell.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/processing.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/profile.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/prolog.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/protobuf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/puppet.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/purebasic.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/python.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/q.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/qml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/r.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rib.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/roboconf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rsl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruby.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruleslanguage.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rust.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scala.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scheme.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scilab.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scss.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smali.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smalltalk.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sqf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sql.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stan.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stata.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/step21.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stylus.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/subunit.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/swift.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/taggerscript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tcl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tex.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/thrift.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/twig.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/typescript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vala.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbnet.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript-html.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/verilog.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vhdl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vim.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/x86asm.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xquery.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/yaml.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/zephir.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/agate.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/androidstudio.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/arduino-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/arta.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ascetic.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-paper.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-papersq.png (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/codepen-embed.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/color-brewer.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/darcula.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/darkula.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/default.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/docco.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/dracula.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/far.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/foundation.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/github-gist.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/github.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/googlecode.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/grayscale.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/hopscotch.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/hybrid.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/idea.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ir-black.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/magula.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/mono-blue.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai-sublime.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/obsidian.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ocean.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.jpg (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/purebasic.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/railscasts.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/rainbow.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.png (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-dark.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-light.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/sunburst.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-blue.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-bright.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-eighties.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/vs.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/xcode.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/xt256.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/zenburn.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.jscsrc (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.jshintrc (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.npmignore (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/CHANGELOG.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/bower.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/composer.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.old.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.old.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-compat.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/index.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/test.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/AUTHORS.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/LICENSE.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/bower.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/core.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/LICENSE.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.map (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/.eslintrc.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/jsonp.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/load.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/parseXML.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/script.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/location.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/nonce.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/rquery.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/xhr.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/attr.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/classes.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/prop.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/val.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/callbacks.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/DOMEval.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/access.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/init.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/parseHTML.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/ready-no-deferred.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/ready.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/readyException.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/stripAndCollapse.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/core/var/rsingleTag.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/addGetHookIf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/adjustCSS.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/curCSS.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/hiddenVisibleSelectors.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/showHide.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/cssExpand.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/getStyles.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/isHiddenWithinTree.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/rmargin.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/rnumnonpx.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/swap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/data.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/data/Data.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/acceptData.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataPriv.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataUser.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/deferred.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/deferred/exceptionHook.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/deprecated.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/dimensions.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/effects.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/effects/Tween.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/effects/animatedSelector.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event/ajax.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event/alias.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event/focusin.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/event/trigger.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/exports/amd.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/exports/global.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/jquery.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/_evalUrl.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/buildFragment.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/getAll.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/setGlobalEval.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rcheckableType.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rscriptType.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rtagName.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/wrapMap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/offset.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/queue.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/queue/delay.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/selector-native.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/selector-sizzle.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/selector.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/serialize.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/findFilter.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/dir.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/rneedsContext.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/siblings.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/ObjectFunctionString.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/arr.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/class2type.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/concat.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/document.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/documentElement.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/fnToString.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/getProto.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/hasOwn.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/indexOf.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/pnum.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/push.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/rcssNum.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/rnothtmlwhite.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/slice.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/support.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/var/toString.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/jquery/src/wrap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/.npmignore (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/Gulpfile.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/Makefile (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/bin/marked (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/bower.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/component.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/doc/broken.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/doc/todo.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/lib/marked.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/man/marked.1 (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/marked.min.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/marked/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/.npmignore (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/build/build.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/build/test.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/cli.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/mime.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/mime/types.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/example/parse.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/readme.markdown (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/bool.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/dash.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/default_bool.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/dotted.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/long.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/num.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/parse.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/parse_modified.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/short.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/minimist/test/whitespace.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/.npmignore (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/README.md (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/benchmark/node-static-0.3.0.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/bin/cli.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/examples/file-server.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/lib/node-static.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/lib/node-static/util.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/empty.css (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/hello.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/index.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/there/index.html (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/node-static/test/integration/node-static-test.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/bool.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/boolean_double.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/boolean_single.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/default_hash.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/default_singles.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/divide.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count_options.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count_wrap.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/nonopt.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/reflect.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/short.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/string.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/usage-options.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/example/xup.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/readme.markdown (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/_.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/_/argv.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/_/bin.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/dash.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/parse.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/parse_modified.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/short.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/usage.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/optimist/test/whitespace.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/LICENSE (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/README.markdown (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/example/center.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/example/meat.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/index.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/test/break.js (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/test/idleness.txt (100%) rename docs/api-reference/{1_5 => v1.5}/node_modules/wordwrap/test/wrap.js (100%) rename docs/api-reference/{1_5 => v1.5}/package.json (100%) rename docs/api-reference/{1_5 => v1.5}/runbrodocs.sh (100%) rename docs/api-reference/{1_5 => v1.5}/scroll.js (100%) rename docs/api-reference/{1_5 => v1.5}/server.js (100%) rename docs/api-reference/{1_5 => v1.5}/stylesheet.css (100%) rename docs/api-reference/{1_5 => v1.5}/tabvisibility.js (100%) delete mode 100644 docs/resources-reference/1_5/node_modules/node-static/.package.json.un~ delete mode 100644 docs/resources-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ rename docs/resources-reference/{1_5 => v1.5}/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/actions.js (100%) rename docs/resources-reference/{1_5 => v1.5}/brodoc.js (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_cluster.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_config.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_definitions.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_binding_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_binding_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_capabilities_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_capabilities_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentcondition_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentcondition_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmap_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmap_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmaplist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_configmaplist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_container_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_container_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerimage_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerimage_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerport_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerport_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstate_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstate_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_containerstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjob_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjob_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjoblist_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjoblist_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjobspec_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjobspec_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjobstatus_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_cronjobstatus_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointport_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointport_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpoints_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpoints_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointslist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointslist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_envvar_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_envvar_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_envvarsource_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_envvarsource_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_event_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_event_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_event_versioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_event_versioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eventlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eventlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eventsource_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eventsource_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_execaction_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_execaction_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_handler_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_handler_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_httpheader_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_httpheader_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_info_version_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_info_version_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_intorstring_intstr_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_intorstring_intstr_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_job_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobcondition_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_joblist_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobspec_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobstatus_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobtemplatespec_v2alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_jobtemplatespec_v2alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_lifecycle_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_lifecycle_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrange_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrange_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespace_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespace_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_node_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_node_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodecondition_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodecondition_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodestatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodestatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectmeta_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectmeta_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectreference_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_objectreference_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ownerreference_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_ownerreference_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_patch_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_patch_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_pod_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_pod_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podcondition_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podcondition_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplate_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplate_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_preconditions_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_preconditions_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_probe_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_probe_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_quantity_resource_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_quantity_resource_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rawextension_runtime_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rawextension_runtime_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequota_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequota_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_role_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_role_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scale_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scale_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scale_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scale_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secret_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secret_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secretlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_secretlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_securitycontext_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_securitycontext_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_service_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_service_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicelist_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicelist_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceport_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_serviceport_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicespec_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicespec_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicestatus_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_servicestatus_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_status_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_status_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_time_unversioned_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_time_unversioned_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_volume_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_volume_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_volumemount_v1_concept.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_generated_volumemount_v1_definition.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_meta.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_oldversions.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_overview.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_servicediscovery.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/_workloads.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/deployment-original.md (100%) rename docs/resources-reference/{1_5 => v1.5}/documents/deployment.md (100%) rename docs/resources-reference/{1_5 => v1.5}/index.html (100%) rename docs/resources-reference/{1_5 => v1.5}/jsconfig.json (100%) rename docs/resources-reference/{1_5 => v1.5}/manifest.json (100%) rename docs/resources-reference/{1_5 => v1.5}/markedDecorations.js (100%) rename docs/resources-reference/{1_5 => v1.5}/navData.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/.bin/marked (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/.bin/mime (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/.bin/static (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/CHANGELOG.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/Gruntfile.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/dist/js/npm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/.jshintrc (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-commonjs-generator.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-lessdoc-parser.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-raw-files-generator.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/change-version.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/configBridge.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/npm-shrinkwrap.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/grunt/sauce_browsers.yml (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/affix.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/alert.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/button.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/carousel.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/collapse.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/dropdown.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/modal.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/popover.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/scrollspy.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/tab.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/tooltip.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/js/transition.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/alerts.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/badges.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/bootstrap.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/breadcrumbs.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/button-groups.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/buttons.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/carousel.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/close.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/code.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/component-animations.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/dropdowns.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/forms.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/glyphicons.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/grid.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/input-groups.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/jumbotron.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/labels.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/list-group.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/media.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/alerts.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/background-variant.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/border-radius.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/buttons.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/center-block.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/clearfix.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/forms.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/gradients.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid-framework.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/hide-text.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/image.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/labels.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/list-group.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-divider.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-vertical-align.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/opacity.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/pagination.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/panels.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/progress-bar.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-filter.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-text.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/resize.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/responsive-visibility.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/size.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/tab-focus.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/table-row.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-emphasis.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-overflow.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/vendor-prefixes.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/modals.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/navbar.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/navs.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/normalize.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/pager.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/pagination.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/panels.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/popovers.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/print.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/progress-bars.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-embed.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-utilities.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/scaffolding.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/tables.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/theme.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/thumbnails.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/tooltip.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/type.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/utilities.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/variables.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/less/wells.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/bootstrap/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/ReadMe.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/examples/normal-usage.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/examples/safe-string.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/colors.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/custom/trap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/custom/zalgo.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/extendStringPrototype.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/america.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/rainbow.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/random.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/maps/zebra.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/styles.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/lib/system/supports-colors.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/safe.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/colors/themes/generic-logging.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/Jakefile (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/ejs.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/ejs.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/lib/ejs.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/lib/utils.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/ejs.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.out (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/fail.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/hello-world.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-abspath.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-root.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/bom.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu-item.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu/item.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_var.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.error.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/para.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/pet.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/strict.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/style.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user-no-with.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/fixtures/with-context.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/mocha.opts (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/include.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/include_preprocessor.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/ejs/test/tmp/renderFile.ejs (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/.npmignore (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/HELP-US-OUT.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.min.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/FontAwesome.otf (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.eot (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.svg (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.ttf (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/animated.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/bordered-pulled.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/core.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/fixed-width.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/font-awesome.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/icons.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/larger.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/list.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/mixins.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/path.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/rotated-flipped.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/screen-reader.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/stacked.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/less/variables.less (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_animated.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_bordered-pulled.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_core.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_fixed-width.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_icons.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_larger.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_list.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_mixins.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_path.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_rotated-flipped.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_screen-reader.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_stacked.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/_variables.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/font-awesome/scss/font-awesome.scss (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/api.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/building-testing.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/css-classes-reference.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/index.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-contribution.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-guide.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/language-requests.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/line-numbers.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/reference.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/release-process.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/docs/style-guide.rst (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/highlight.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/1c.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/abnf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/accesslog.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/actionscript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ada.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/apache.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/applescript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/arduino.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/armasm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/asciidoc.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/aspectj.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autohotkey.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autoit.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/avrasm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/awk.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/axapta.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bash.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/basic.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bnf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/brainfuck.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cal.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/capnproto.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ceylon.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clean.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure-repl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cmake.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coffeescript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coq.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cos.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cpp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crmsh.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crystal.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cs.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/csp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/css.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/d.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dart.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/delphi.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/diff.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/django.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dns.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dockerfile.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dos.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dsconfig.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dts.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dust.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ebnf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elixir.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erb.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang-repl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/excel.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fix.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/flix.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fortran.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fsharp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gams.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gauss.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gcode.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gherkin.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/glsl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/go.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/golo.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gradle.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/groovy.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/handlebars.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haskell.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haxe.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/hsp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/htmlbars.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/http.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/inform7.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ini.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/irpf90.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/java.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/javascript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/json.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/julia.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/kotlin.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lasso.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ldif.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/less.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lisp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livecodeserver.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livescript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/llvm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lsl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lua.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/makefile.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/markdown.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mathematica.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/matlab.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/maxima.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mel.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mercury.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mipsasm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mizar.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mojolicious.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/monkey.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/moonscript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nginx.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nimrod.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nix.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nsis.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/objectivec.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ocaml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/openscad.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/oxygene.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/parser3.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/perl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/php.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pony.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/powershell.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/processing.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/profile.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/prolog.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/protobuf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/puppet.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/purebasic.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/python.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/q.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/qml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/r.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rib.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/roboconf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rsl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruby.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruleslanguage.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rust.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scala.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scheme.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scilab.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scss.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smali.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smalltalk.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sqf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sql.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stan.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stata.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/step21.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stylus.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/subunit.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/swift.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/taggerscript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tcl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tex.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/thrift.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/twig.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/typescript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vala.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbnet.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript-html.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/verilog.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vhdl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vim.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/x86asm.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xquery.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/yaml.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/zephir.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/agate.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/androidstudio.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/arduino-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/arta.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ascetic.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-paper.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-papersq.png (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/codepen-embed.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/color-brewer.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/darcula.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/darkula.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/default.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/docco.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/dracula.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/far.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/foundation.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/github-gist.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/github.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/googlecode.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/grayscale.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/hopscotch.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/hybrid.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/idea.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ir-black.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/magula.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/mono-blue.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai-sublime.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/obsidian.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/ocean.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.jpg (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/purebasic.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/railscasts.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/rainbow.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.png (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-dark.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-light.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/sunburst.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-blue.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-bright.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-eighties.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/vs.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/xcode.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/xt256.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/highlight.js/styles/zenburn.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.jscsrc (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.jshintrc (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/.npmignore (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/CHANGELOG.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/bower.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/composer.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.old.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.old.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-compat.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/index.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/test.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/AUTHORS.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/LICENSE.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/bower.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/core.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/LICENSE.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.map (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/.eslintrc.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/jsonp.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/load.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/parseXML.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/script.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/location.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/nonce.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/rquery.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/ajax/xhr.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/attr.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/classes.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/prop.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/attributes/val.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/callbacks.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/DOMEval.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/access.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/init.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/parseHTML.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/ready-no-deferred.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/ready.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/readyException.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/stripAndCollapse.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/core/var/rsingleTag.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/addGetHookIf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/adjustCSS.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/curCSS.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/hiddenVisibleSelectors.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/showHide.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/cssExpand.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/getStyles.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/isHiddenWithinTree.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/rmargin.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/rnumnonpx.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/css/var/swap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/data.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/data/Data.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/acceptData.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataPriv.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataUser.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/deferred.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/deferred/exceptionHook.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/deprecated.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/dimensions.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/effects.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/effects/Tween.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/effects/animatedSelector.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event/ajax.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event/alias.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event/focusin.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/event/trigger.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/exports/amd.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/exports/global.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/jquery.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/_evalUrl.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/buildFragment.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/getAll.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/setGlobalEval.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rcheckableType.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rscriptType.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rtagName.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/manipulation/wrapMap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/offset.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/queue.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/queue/delay.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/selector-native.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/selector-sizzle.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/selector.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/serialize.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/findFilter.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/dir.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/rneedsContext.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/siblings.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/ObjectFunctionString.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/arr.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/class2type.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/concat.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/document.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/documentElement.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/fnToString.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/getProto.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/hasOwn.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/indexOf.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/pnum.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/push.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/rcssNum.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/rnothtmlwhite.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/slice.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/support.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/var/toString.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/jquery/src/wrap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/.npmignore (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/Gulpfile.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/Makefile (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/bin/marked (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/bower.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/component.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/doc/broken.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/doc/todo.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/lib/marked.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/man/marked.1 (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/marked.min.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/marked/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/.npmignore (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/build/build.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/build/test.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/cli.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/mime.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/mime/types.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/example/parse.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/readme.markdown (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/bool.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/dash.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/default_bool.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/dotted.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/long.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/num.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/parse.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/parse_modified.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/short.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/minimist/test/whitespace.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/.npmignore (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/README.md (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/benchmark/node-static-0.3.0.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/bin/cli.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/examples/file-server.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/lib/node-static.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/lib/node-static/util.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/empty.css (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/hello.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/index.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/test/fixtures/there/index.html (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/node-static/test/integration/node-static-test.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/bool.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/boolean_double.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/boolean_single.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/default_hash.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/default_singles.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/divide.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count_options.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/line_count_wrap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/nonopt.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/reflect.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/short.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/string.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/usage-options.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/example/xup.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/readme.markdown (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/_.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/_/argv.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/_/bin.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/dash.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/parse.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/parse_modified.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/short.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/usage.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/optimist/test/whitespace.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/LICENSE (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/README.markdown (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/example/center.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/example/meat.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/index.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/test/break.js (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/test/idleness.txt (100%) rename docs/resources-reference/{1_5 => v1.5}/node_modules/wordwrap/test/wrap.js (100%) rename docs/resources-reference/{1_5 => v1.5}/package.json (100%) rename docs/resources-reference/{1_5 => v1.5}/runbrodocs.sh (100%) rename docs/resources-reference/{1_5 => v1.5}/scroll.js (100%) rename docs/resources-reference/{1_5 => v1.5}/server.js (100%) rename docs/resources-reference/{1_5 => v1.5}/stylesheet.css (100%) rename docs/resources-reference/{1_5 => v1.5}/tabvisibility.js (100%) delete mode 100644 docs/user-guide/kubectl/1_5/node_modules/node-static/.package.json.un~ delete mode 100644 docs/user-guide/kubectl/1_5/node_modules/node-static/lib/.node-static.js.un~ rename docs/user-guide/kubectl/{1_5 => v1.5}/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/actions.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/brodoc.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_app_management.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_cluster.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_config.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_definitions.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_annotate.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_api-versions.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apigroup_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apigrouplist_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiresource_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiresourcelist_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiversion_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apiversions_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_apply.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_attach.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_attachedvolume_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_autoscale.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_binding_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_binding_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_capabilities_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_capabilities_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_category_cluster_management.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_category_declarative_app_management.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_category_deprecated_commands.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_category_kubectl_settings_and_usage.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificate.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequest_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_cluster-info.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrole_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolebinding_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_clusterrolelist_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_completion.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentcondition_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentcondition_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_componentstatuslist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_config.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmap_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmap_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmapkeyselector_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmaplist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_configmaplist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_container_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_container_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerimage_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerimage_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerport_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerport_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstate_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstate_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstaterunning_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstateterminated_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstatewaiting_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_containerstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_convert.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_cordon.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_cp.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_cputargetutilization_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_create.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_crossversionobjectreference_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonendpoint_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonset_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_daemonsetstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_delete.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deleteoptions_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deployment_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentcondition_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentrollback_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_deploymentstrategy_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_describe.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_drain.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_edit.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointaddress_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointport_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointport_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpoints_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpoints_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointslist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointslist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_endpointsubset_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_envvar_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_envvar_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_envvarsource_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_envvarsource_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_event_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_event_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_event_versioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_event_versioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eventlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eventlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eventsource_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eventsource_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_eviction_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_exec.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_execaction_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_execaction_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_explain.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_expose.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_get.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_groupversionfordiscovery_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_handler_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_handler_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_httpgetaction_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_httpheader_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_httpheader_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_info_version_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_info_version_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingress_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressbackend_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingresslist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressrule_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingressstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ingresstls_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_intorstring_intstr_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_intorstring_intstr_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_job_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_job_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_job_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_job_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobcondition_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobcondition_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobcondition_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_joblist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_joblist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_joblist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_jobstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_label.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_labelselector_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_labelselectorrequirement_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_lifecycle_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_lifecycle_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrange_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrange_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangeitem_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_limitrangespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_listmeta_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_loadbalanceringress_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_loadbalancerstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_localobjectreference_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_localsubjectaccessreview_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_logs.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespace_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespace_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_namespacestatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicy_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyingressrule_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicylist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicypeer_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyport_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_networkpolicyspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_node_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_node_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodeaddress_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodecondition_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodecondition_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodedaemonendpoints_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodestatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodestatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nodesysteminfo_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_nonresourceattributes_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectfieldselector_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectmeta_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectmeta_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectreference_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_objectreference_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_options.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ownerreference_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_ownerreference_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_patch.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_patch_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_patch_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolume_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaim_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumeclaimstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_persistentvolumestatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_pod_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_pod_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podcondition_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podcondition_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudget_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podsecuritycontext_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplate_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplate_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplatelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_podtemplatespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_policyrule_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_port-forward.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_preconditions_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_preconditions_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_probe_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_probe_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_proxy.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_quantity_resource_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_quantity_resource_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rawextension_runtime_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rawextension_runtime_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replace.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicaset_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetcondition_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicasetstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontroller_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollercondition_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_replicationcontrollerstatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourceattributes_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcefieldselector_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequota_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequota_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotalist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotaspec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcequotastatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_resourcerequirements_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_role_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_role_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolebinding_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolebindinglist_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolelist_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_roleref_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rollbackconfig_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rolling-update.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rollingupdatedeployment_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_rollout.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_run.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scale.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scale_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scale_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scale_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scale_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalespec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalestatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalestatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_scalestatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secret_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secret_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secretkeyselector_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secretlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_secretlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_securitycontext_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_securitycontext_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_selinuxoptions_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_service_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_service_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceaccount_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceaccountlist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicelist_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicelist_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceport_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_serviceport_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicespec_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicespec_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicestatus_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_servicestatus_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_set.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulset_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetlist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statefulsetstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_status_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_status_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statuscause_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_statusdetails_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_stop.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_storageclass_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_storageclasslist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subject_v1alpha1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreview_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_subresourcereference_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_taint.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tcpsocketaction_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_thirdpartyresource_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_time_unversioned_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_time_unversioned_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreview_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreviewspec_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_tokenreviewstatus_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_top.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_uncordon.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_userinfo_v1beta1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_version.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_volume_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_volume_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_volumemount_v1_concept.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_generated_volumemount_v1_definition.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_getting_started.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_meta.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_oldversions.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_overview.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_servicediscovery.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_working_with_apps.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/_workloads.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/deployment-original.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/documents/deployment.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/index.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/jsconfig.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/manifest.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/markedDecorations.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/navData.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/.bin/marked (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/.bin/mime (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/.bin/static (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/CHANGELOG.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/Gruntfile.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.css.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.css.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/css/bootstrap.min.css.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/js/bootstrap.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/dist/js/npm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/.jshintrc (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-commonjs-generator.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-lessdoc-parser.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/bs-raw-files-generator.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/change-version.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/configBridge.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/npm-shrinkwrap.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/grunt/sauce_browsers.yml (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/affix.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/alert.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/button.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/carousel.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/collapse.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/dropdown.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/modal.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/popover.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/scrollspy.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/tab.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/tooltip.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/js/transition.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/alerts.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/badges.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/bootstrap.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/breadcrumbs.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/button-groups.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/buttons.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/carousel.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/close.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/code.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/component-animations.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/dropdowns.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/forms.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/glyphicons.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/grid.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/input-groups.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/jumbotron.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/labels.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/list-group.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/media.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/alerts.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/background-variant.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/border-radius.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/buttons.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/center-block.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/clearfix.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/forms.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/gradients.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid-framework.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/grid.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/hide-text.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/image.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/labels.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/list-group.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-divider.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/nav-vertical-align.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/opacity.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/pagination.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/panels.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/progress-bar.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-filter.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/reset-text.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/resize.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/responsive-visibility.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/size.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/tab-focus.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/table-row.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-emphasis.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/text-overflow.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/mixins/vendor-prefixes.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/modals.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/navbar.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/navs.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/normalize.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/pager.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/pagination.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/panels.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/popovers.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/print.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/progress-bars.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-embed.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/responsive-utilities.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/scaffolding.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/tables.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/theme.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/thumbnails.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/tooltip.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/type.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/utilities.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/variables.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/less/wells.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/bootstrap/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/ReadMe.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/examples/normal-usage.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/examples/safe-string.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/colors.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/custom/trap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/custom/zalgo.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/extendStringPrototype.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/maps/america.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/maps/rainbow.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/maps/random.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/maps/zebra.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/styles.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/lib/system/supports-colors.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/safe.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/colors/themes/generic-logging.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/Jakefile (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/ejs.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/ejs.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/lib/ejs.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/lib/utils.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/ejs.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/backslash.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/comments.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/consecutive-tags.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/double-quote.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/error.out (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/fail.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/hello-world.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-abspath.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-root.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include-simple.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.css.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_cache.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.css.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_cache.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/bom.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu-item.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/includes/menu/item.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/literal.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_preprocessor.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/menu_var.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/messed.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/newlines.mixed.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.error.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.newlines.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/no.semicolons.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/para.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/pet.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/rmWhitespace.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/single-quote.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/space-and-tab-slurp.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/strict.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/style.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user-no-with.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/user.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/fixtures/with-context.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/mocha.opts (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/tmp/include.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/tmp/include_preprocessor.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/ejs/test/tmp/renderFile.ejs (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/.npmignore (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/HELP-US-OUT.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.css.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/css/font-awesome.min.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/FontAwesome.otf (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.eot (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.svg (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.ttf (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/animated.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/bordered-pulled.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/core.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/fixed-width.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/font-awesome.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/icons.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/larger.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/list.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/mixins.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/path.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/rotated-flipped.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/screen-reader.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/stacked.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/less/variables.less (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_animated.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_bordered-pulled.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_core.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_fixed-width.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_icons.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_larger.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_list.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_mixins.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_path.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_rotated-flipped.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_screen-reader.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_stacked.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/_variables.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/font-awesome/scss/font-awesome.scss (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/api.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/building-testing.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/css-classes-reference.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/index.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/language-contribution.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/language-guide.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/language-requests.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/line-numbers.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/reference.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/release-process.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/docs/style-guide.rst (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/highlight.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/1c.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/abnf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/accesslog.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/actionscript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ada.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/apache.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/applescript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/arduino.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/armasm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/asciidoc.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/aspectj.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autohotkey.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/autoit.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/avrasm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/awk.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/axapta.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bash.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/basic.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/bnf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/brainfuck.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cal.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/capnproto.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ceylon.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clean.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure-repl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/clojure.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cmake.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coffeescript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/coq.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cos.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cpp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crmsh.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/crystal.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/cs.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/csp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/css.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/d.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dart.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/delphi.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/diff.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/django.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dns.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dockerfile.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dos.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dsconfig.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dts.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/dust.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ebnf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elixir.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/elm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erb.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang-repl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/erlang.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/excel.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fix.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/flix.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fortran.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/fsharp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gams.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gauss.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gcode.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gherkin.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/glsl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/go.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/golo.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/gradle.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/groovy.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/handlebars.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haskell.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/haxe.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/hsp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/htmlbars.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/http.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/inform7.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ini.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/irpf90.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/java.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/javascript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/json.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/julia.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/kotlin.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lasso.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ldif.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/less.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lisp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livecodeserver.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/livescript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/llvm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lsl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/lua.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/makefile.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/markdown.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mathematica.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/matlab.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/maxima.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mel.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mercury.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mipsasm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mizar.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/mojolicious.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/monkey.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/moonscript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nginx.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nimrod.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nix.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/nsis.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/objectivec.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ocaml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/openscad.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/oxygene.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/parser3.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/perl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/php.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/pony.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/powershell.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/processing.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/profile.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/prolog.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/protobuf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/puppet.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/purebasic.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/python.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/q.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/qml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/r.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rib.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/roboconf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rsl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruby.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/ruleslanguage.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/rust.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scala.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scheme.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scilab.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/scss.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smali.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/smalltalk.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sqf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/sql.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stan.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stata.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/step21.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/stylus.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/subunit.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/swift.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/taggerscript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tcl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tex.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/thrift.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/tp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/twig.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/typescript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vala.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbnet.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript-html.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vbscript.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/verilog.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vhdl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/vim.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/x86asm.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/xquery.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/yaml.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/lib/languages/zephir.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/agate.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/androidstudio.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/arduino-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/arta.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/ascetic.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-cave-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-dune-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-estuary-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-forest-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-heath-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-lakeside-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-plateau-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-savanna-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-seaside-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atelier-sulphurpool-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/atom-one-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-paper.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/brown-papersq.png (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/codepen-embed.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/color-brewer.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/darcula.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/darkula.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/default.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/docco.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/dracula.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/far.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/foundation.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/github-gist.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/github.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/googlecode.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/grayscale.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/gruvbox-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/hopscotch.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/hybrid.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/idea.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/ir-black.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/kimbie.light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/magula.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/mono-blue.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai-sublime.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/monokai.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/obsidian.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/ocean.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/paraiso-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/pojoaque.jpg (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/purebasic.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/qtcreator_light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/railscasts.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/rainbow.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/school-book.png (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-dark.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/solarized-light.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/sunburst.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-blue.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-bright.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night-eighties.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow-night.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/tomorrow.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/vs.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/xcode.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/xt256.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/highlight.js/styles/zenburn.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/.jscsrc (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/.jshintrc (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/.npmignore (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/CHANGELOG.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/bower.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/composer.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/css/style.old.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/demo/index.old.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/jquery.scrollTo.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-compat.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/index.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery.scrollto/tests/test.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/AUTHORS.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/LICENSE.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/bower.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/core.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.min.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/dist/jquery.slim.min.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/external/sizzle/LICENSE.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/external/sizzle/dist/sizzle.min.map (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/.eslintrc.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/jsonp.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/load.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/parseXML.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/script.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/location.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/nonce.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/var/rquery.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/ajax/xhr.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes/attr.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes/classes.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes/prop.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/attributes/val.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/callbacks.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/DOMEval.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/access.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/init.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/parseHTML.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/ready-no-deferred.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/ready.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/readyException.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/stripAndCollapse.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/core/var/rsingleTag.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/addGetHookIf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/adjustCSS.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/curCSS.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/hiddenVisibleSelectors.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/showHide.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/cssExpand.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/getStyles.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/isHiddenWithinTree.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/rmargin.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/rnumnonpx.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/css/var/swap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/data.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/data/Data.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/data/var/acceptData.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataPriv.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/data/var/dataUser.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/deferred.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/deferred/exceptionHook.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/deprecated.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/dimensions.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/effects.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/effects/Tween.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/effects/animatedSelector.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event/ajax.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event/alias.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event/focusin.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/event/trigger.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/exports/amd.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/exports/global.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/jquery.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/_evalUrl.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/buildFragment.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/getAll.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/setGlobalEval.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rcheckableType.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rscriptType.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/var/rtagName.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/manipulation/wrapMap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/offset.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/queue.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/queue/delay.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/selector-native.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/selector-sizzle.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/selector.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/serialize.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/traversing.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/traversing/findFilter.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/dir.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/rneedsContext.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/traversing/var/siblings.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/ObjectFunctionString.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/arr.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/class2type.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/concat.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/document.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/documentElement.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/fnToString.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/getProto.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/hasOwn.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/indexOf.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/pnum.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/push.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/rcssNum.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/rnothtmlwhite.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/slice.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/support.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/var/toString.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/jquery/src/wrap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/.npmignore (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/Gulpfile.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/Makefile (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/bin/marked (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/bower.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/component.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/doc/broken.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/doc/todo.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/lib/marked.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/man/marked.1 (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/marked.min.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/marked/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/.npmignore (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/build/build.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/build/test.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/cli.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/mime.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/mime/types.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/example/parse.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/readme.markdown (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/bool.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/dash.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/default_bool.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/dotted.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/long.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/num.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/parse.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/parse_modified.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/short.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/minimist/test/whitespace.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/.npmignore (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/README.md (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/benchmark/node-static-0.3.0.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/bin/cli.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/examples/file-server.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/lib/node-static.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/lib/node-static/util.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/test/fixtures/empty.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/test/fixtures/hello.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/test/fixtures/index.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/test/fixtures/there/index.html (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/node-static/test/integration/node-static-test.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/bool.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/boolean_double.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/boolean_single.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/default_hash.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/default_singles.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/divide.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/line_count.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/line_count_options.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/line_count_wrap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/nonopt.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/reflect.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/short.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/string.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/usage-options.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/example/xup.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/readme.markdown (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/_.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/_/argv.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/_/bin.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/dash.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/parse.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/parse_modified.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/short.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/usage.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/optimist/test/whitespace.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/LICENSE (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/README.markdown (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/example/center.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/example/meat.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/index.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/test/break.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/test/idleness.txt (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/node_modules/wordwrap/test/wrap.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/package.json (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/runbrodocs.sh (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/scroll.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/server.js (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/stylesheet.css (100%) rename docs/user-guide/kubectl/{1_5 => v1.5}/tabvisibility.js (100%) diff --git a/_data/reference.yml b/_data/reference.yml index 0e963e16a8..de1dec2c14 100644 --- a/_data/reference.yml +++ b/_data/reference.yml @@ -6,17 +6,17 @@ toc: - title: "Kubernetes Resource Types (New Docs Style)" section: - title: Version 1.5 - path: /docs/resources-reference/1_5/ + path: /docs/resources-reference/v1.5/ - title: "Kubernetes API (New Docs Style)" section: - title: Version 1.5 - path: /docs/api-reference/1_5/ + path: /docs/api-reference/v1.5/ - title: "Kubectl Commands (New Docs Style)" section: - title: Version 1.5 - path: /docs/user-guide/kubectl/1_5/ + path: /docs/user-guide/kubectl/v1.5/ - title: Kubernetes API section: diff --git a/docs/api-reference/1_5/node_modules/node-static/.package.json.un~ b/docs/api-reference/1_5/node_modules/node-static/.package.json.un~ deleted file mode 100644 index d2064f27610f35e6df2635be0b3c88996498c2f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 565 zcmWH`%$*;a=aT=Ff$96@m->t2E+-0EeA1lmUi&$Jxm2Oky~*O!PY7>lF8iC!z`$S# z#G(ocN@b}<#hLkeN>&O=272at7D_rm2~{8#0%Are22yY~NQ@!;{W>NVh-~}?kN_G0 vNx=+Z_zwhN?P!Wdxzq{)V017-qvNXt&`=d1Rs&*CB!i*?dqkTyK3@d@G{`MM diff --git a/docs/api-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ b/docs/api-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ deleted file mode 100644 index 77ce232fdf785c86c648c54117d67f820ebd33c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1018 zcmWH`%$*;a=aT=Ffl1Y-|CsEio8oVJr)^J4aXF@zh9@!0+MB9 zh`#`m1p=5t5E~=~Glbzk5P(HMGNXV7ApndHC2({wFnpB&n$HEqJkWRsMFq~dHf;n) gA4m-{07d0!^dW}`P1*41Vt2E+-0EeA1lmUi&$Jxm2Oky~*O!PY7>lF8iC!z`$S# z#G(ocN@b}<#hLkeN>&O=272at7D_rm2~{8#0%Are22yY~NQ@!;{W>NVh-~}?kN_G0 vNx=+Z_zwhN?P!Wdxzq{)V017-qvNXt&`=d1Rs&*CB!i*?dqkTyK3@d@G{`MM diff --git a/docs/resources-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ b/docs/resources-reference/1_5/node_modules/node-static/lib/.node-static.js.un~ deleted file mode 100644 index 77ce232fdf785c86c648c54117d67f820ebd33c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1018 zcmWH`%$*;a=aT=Ffl1Y-|CsEio8oVJr)^J4aXF@zh9@!0+MB9 zh`#`m1p=5t5E~=~Glbzk5P(HMGNXV7ApndHC2({wFnpB&n$HEqJkWRsMFq~dHf;n) gA4m-{07d0!^dW}`P1*41Vt2E+-0EeA1lmUi&$Jxm2Oky~*O!PY7>lF8iC!z`$S# z#G(ocN@b}<#hLkeN>&O=272at7D_rm2~{8#0%Are22yY~NQ@!;{W>NVh-~}?kN_G0 vNx=+Z_zwhN?P!Wdxzq{)V017-qvNXt&`=d1Rs&*CB!i*?dqkTyK3@d@G{`MM diff --git a/docs/user-guide/kubectl/1_5/node_modules/node-static/lib/.node-static.js.un~ b/docs/user-guide/kubectl/1_5/node_modules/node-static/lib/.node-static.js.un~ deleted file mode 100644 index 77ce232fdf785c86c648c54117d67f820ebd33c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1018 zcmWH`%$*;a=aT=Ffl1Y-|CsEio8oVJr)^J4aXF@zh9@!0+MB9 zh`#`m1p=5t5E~=~Glbzk5P(HMGNXV7ApndHC2({wFnpB&n$HEqJkWRsMFq~dHf;n) gA4m-{07d0!^dW}`P1*41V Date: Fri, 13 Jan 2017 13:35:06 -0800 Subject: [PATCH 025/132] Fix travis --- .travis.yml | 6 ++++++ test/README.md | 13 +++++++++++++ test/examples_test.go | 8 ++++---- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 test/README.md diff --git a/.travis.yml b/.travis.yml index 505fc50623..33db17d9e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,12 @@ install: - go get -t -v k8s.io/kubernetes.github.io/test - git clone --depth=50 --branch=master https://github.com/kubernetes/md-check $HOME/gopath/src/k8s.io/md-check - go get -t -v k8s.io/md-check +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/apimachinery +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/apiserver +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/client-go +- cp -r $GOPATH/src/k8s.io/kubernetes/vendor/* $GOPATH/src/ +- rm -rf $GOPATH/src/k8s.io/kubernetes/vendor/* +- cp -r $GOPATH/src/k8s.io/kubernetes/staging/src/* $GOPATH/src/ script: - go test -v k8s.io/kubernetes.github.io/test diff --git a/test/README.md b/test/README.md new file mode 100644 index 0000000000..3804697b6f --- /dev/null +++ b/test/README.md @@ -0,0 +1,13 @@ +Note: These tests are importing code from kubernetes that isn't really +meant to be used outside the repo. This causes vendoring problems. As +a result, we have to work around those with these lines in the travis +config: + +``` +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/apimachinery +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/apiserver +- rm $GOPATH/src/k8s.io/kubernetes/vendor/k8s.io/client-go +- cp -r $GOPATH/src/k8s.io/kubernetes/vendor/* $GOPATH/src/ +- rm -rf $GOPATH/src/k8s.io/kubernetes/vendor/* +- cp -r $GOPATH/src/k8s.io/kubernetes/staging/src/* $GOPATH/src/ +``` diff --git a/test/examples_test.go b/test/examples_test.go index 14ae5f5061..5727473c52 100644 --- a/test/examples_test.go +++ b/test/examples_test.go @@ -28,6 +28,9 @@ import ( "strings" "testing" + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/types" + "k8s.io/apimachinery/pkg/util/validation/field" "k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api/testapi" "k8s.io/kubernetes/pkg/api/validation" @@ -37,13 +40,10 @@ import ( batch_validation "k8s.io/kubernetes/pkg/apis/batch/validation" "k8s.io/kubernetes/pkg/apis/extensions" expvalidation "k8s.io/kubernetes/pkg/apis/extensions/validation" - "k8s.io/kubernetes/pkg/capabilities" "k8s.io/kubernetes/pkg/apis/policy" policyvalidation "k8s.io/kubernetes/pkg/apis/policy/validation" + "k8s.io/kubernetes/pkg/capabilities" "k8s.io/kubernetes/pkg/registry/batch/job" - "k8s.io/kubernetes/pkg/runtime" - "k8s.io/kubernetes/pkg/types" - "k8s.io/kubernetes/pkg/util/validation/field" "k8s.io/kubernetes/pkg/util/yaml" schedulerapilatest "k8s.io/kubernetes/plugin/pkg/scheduler/api/latest" ) From de9b06b3bf19165a30bb3bf14de7dce380225f1b Mon Sep 17 00:00:00 2001 From: Jeff Mendoza Date: Fri, 13 Jan 2017 14:00:36 -0800 Subject: [PATCH 026/132] Fix more imports in tests. --- test/examples_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/examples_test.go b/test/examples_test.go index 5727473c52..e812823027 100644 --- a/test/examples_test.go +++ b/test/examples_test.go @@ -31,6 +31,7 @@ import ( "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/validation/field" + "k8s.io/apimachinery/pkg/util/yaml" "k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api/testapi" "k8s.io/kubernetes/pkg/api/validation" @@ -44,7 +45,6 @@ import ( policyvalidation "k8s.io/kubernetes/pkg/apis/policy/validation" "k8s.io/kubernetes/pkg/capabilities" "k8s.io/kubernetes/pkg/registry/batch/job" - "k8s.io/kubernetes/pkg/util/yaml" schedulerapilatest "k8s.io/kubernetes/plugin/pkg/scheduler/api/latest" ) From 2456376b44937de6cf280a7f832c1fac8767ae7f Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Fri, 13 Jan 2017 15:07:24 -0800 Subject: [PATCH 027/132] add intellij project file to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9b4a4b2ee4..460a88c521 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ Session.vim *~ # auto-generated tag files tags + +kubernetes.github.io.iml From 72928098ef19d470e6017498504c10c8cd42461f Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Fri, 13 Jan 2017 15:08:36 -0800 Subject: [PATCH 028/132] Fix issue in reference docs where query parameters were listed as path params and body params were listed as query params. --- ..._generated_apigroup_unversioned_concept.md | 4 + ...nerated_apigroup_unversioned_definition.md | 2 + ...erated_apigrouplist_unversioned_concept.md | 2 + ...ted_apigrouplist_unversioned_definition.md | 2 + ...nerated_apiresource_unversioned_concept.md | 2 + ...ted_apiresourcelist_unversioned_concept.md | 2 + ..._apiresourcelist_unversioned_definition.md | 2 + ...nerated_apiversions_unversioned_concept.md | 2 + ...ated_apiversions_unversioned_definition.md | 2 + ...lasticblockstorevolumesource_v1_concept.md | 36 + ...ticblockstorevolumesource_v1_definition.md | 22 + ...erated_azurediskvolumesource_v1_concept.md | 35 + ...ted_azurediskvolumesource_v1_definition.md | 21 + ...erated_azurefilevolumesource_v1_concept.md | 33 + ...ted_azurefilevolumesource_v1_definition.md | 19 + .../_generated_binding_v1_concept.md | 13 +- .../_generated_binding_v1_definition.md | 2 + ...generated_cephfsvolumesource_v1_concept.md | 36 + ...erated_cephfsvolumesource_v1_definition.md | 22 + ...tificatesigningrequest_v1alpha1_concept.md | 56 +- ...icatesigningrequest_v1alpha1_definition.md | 2 + ...catesigningrequestlist_v1alpha1_concept.md | 5 +- ...esigningrequestlist_v1alpha1_definition.md | 2 + ...tesigningrequeststatus_v1alpha1_concept.md | 11 +- ...generated_cindervolumesource_v1_concept.md | 33 + ...erated_cindervolumesource_v1_definition.md | 19 + ..._generated_clusterrole_v1alpha1_concept.md | 108 +- ...nerated_clusterrole_v1alpha1_definition.md | 2 + ...ted_clusterrolebinding_v1alpha1_concept.md | 119 +- ..._clusterrolebinding_v1alpha1_definition.md | 2 + ...clusterrolebindinglist_v1alpha1_concept.md | 69 +- ...sterrolebindinglist_v1alpha1_definition.md | 4 +- ...erated_clusterrolelist_v1alpha1_concept.md | 70 +- ...ted_clusterrolelist_v1alpha1_definition.md | 4 +- .../_generated_componentstatus_v1_concept.md | 12 +- ...generated_componentstatus_v1_definition.md | 2 + ...enerated_componentstatuslist_v1_concept.md | 2 + ...rated_componentstatuslist_v1_definition.md | 2 + .../_generated_configmap_v1_concept.md | 58 +- .../_generated_configmap_v1_definition.md | 2 + ...nerated_configmapkeyselector_v1_concept.md | 1 + ...ated_configmapkeyselector_v1_definition.md | 1 + .../_generated_configmaplist_v1_concept.md | 9 +- .../_generated_configmaplist_v1_definition.md | 2 + ...erated_configmapvolumesource_v1_concept.md | 35 + ...ted_configmapvolumesource_v1_definition.md | 21 + .../_generated_cronjob_v2alpha1_concept.md | 325 +- .../_generated_cronjob_v2alpha1_definition.md | 2 + ..._generated_cronjoblist_v2alpha1_concept.md | 70 +- ...nerated_cronjoblist_v2alpha1_definition.md | 4 +- ...enerated_cronjobstatus_v2alpha1_concept.md | 193 +- ...rated_cronjobstatus_v2alpha1_definition.md | 2 +- .../_generated_daemonset_v1beta1_concept.md | 126 +- ..._generated_daemonset_v1beta1_definition.md | 2 + ...generated_daemonsetlist_v1beta1_concept.md | 75 +- ...erated_daemonsetlist_v1beta1_definition.md | 4 +- .../_generated_deleteoptions_v1_concept.md | 2 + .../_generated_deleteoptions_v1_definition.md | 2 + .../_generated_deployment_v1beta1_concept.md | 306 +- ...generated_deployment_v1beta1_definition.md | 2 + ...enerated_deploymentlist_v1beta1_concept.md | 2 + ...rated_deploymentlist_v1beta1_definition.md | 2 + ...ated_deploymentrollback_v1beta1_concept.md | 2 + ...d_deploymentrollback_v1beta1_definition.md | 2 + ...erated_deploymentstatus_v1beta1_concept.md | 193 +- ...ted_deploymentstatus_v1beta1_definition.md | 2 +- ...erated_downwardapivolumefile_v1_concept.md | 34 + ...ted_downwardapivolumefile_v1_definition.md | 20 + ...ated_downwardapivolumesource_v1_concept.md | 32 + ...d_downwardapivolumesource_v1_definition.md | 18 + ...nerated_emptydirvolumesource_v1_concept.md | 31 + ...ated_emptydirvolumesource_v1_definition.md | 17 + .../_generated_endpoints_v1_concept.md | 124 +- .../_generated_endpoints_v1_definition.md | 2 + .../_generated_endpointslist_v1_concept.md | 68 +- .../_generated_endpointslist_v1_definition.md | 2 + .../documents/_generated_event_v1_concept.md | 58 +- .../_generated_event_v1_definition.md | 2 + .../_generated_eventlist_v1_concept.md | 9 +- .../_generated_eventlist_v1_definition.md | 2 + .../_generated_eviction_v1beta1_concept.md | 2 + .../_generated_eviction_v1beta1_definition.md | 2 + .../_generated_execaction_v1_concept.md | 2 +- .../_generated_execaction_v1_definition.md | 2 +- .../_generated_fcvolumesource_v1_concept.md | 34 + ..._generated_fcvolumesource_v1_definition.md | 20 + .../_generated_flexvolumesource_v1_concept.md | 35 + ...enerated_flexvolumesource_v1_definition.md | 21 + ...enerated_flockervolumesource_v1_concept.md | 32 + ...rated_flockervolumesource_v1_definition.md | 18 + ...cepersistentdiskvolumesource_v1_concept.md | 36 + ...ersistentdiskvolumesource_v1_definition.md | 22 + ...enerated_gitrepovolumesource_v1_concept.md | 33 + ...rated_gitrepovolumesource_v1_definition.md | 19 + ...erated_glusterfsvolumesource_v1_concept.md | 33 + ...ted_glusterfsvolumesource_v1_definition.md | 19 + ...ated_horizontalpodautoscaler_v1_concept.md | 58 +- ...d_horizontalpodautoscaler_v1_definition.md | 2 + ...horizontalpodautoscaler_v1beta1_concept.md | 293 +- ...izontalpodautoscaler_v1beta1_definition.md | 2 + ..._horizontalpodautoscalerlist_v1_concept.md | 9 +- ...rizontalpodautoscalerlist_v1_definition.md | 2 + ...zontalpodautoscalerlist_v1beta1_concept.md | 75 +- ...talpodautoscalerlist_v1beta1_definition.md | 4 +- ...orizontalpodautoscalerstatus_v1_concept.md | 19 +- ...ntalpodautoscalerstatus_v1beta1_concept.md | 208 +- ...lpodautoscalerstatus_v1beta1_definition.md | 2 +- ...nerated_hostpathvolumesource_v1_concept.md | 31 + ...ated_hostpathvolumesource_v1_definition.md | 17 + .../_generated_httpgetaction_v1_concept.md | 2 +- .../_generated_httpgetaction_v1_definition.md | 2 +- ...nerated_httpingresspath_v1beta1_concept.md | 32 + ...ated_httpingresspath_v1beta1_definition.md | 18 + ...ed_httpingressrulevalue_v1beta1_concept.md | 31 + ...httpingressrulevalue_v1beta1_definition.md | 17 + .../_generated_ingress_v1beta1_concept.md | 293 +- .../_generated_ingress_v1beta1_definition.md | 2 + ...enerated_ingressbackend_v1beta1_concept.md | 2 +- ...rated_ingressbackend_v1beta1_definition.md | 2 +- .../_generated_ingresslist_v1beta1_concept.md | 75 +- ...enerated_ingresslist_v1beta1_definition.md | 4 +- .../_generated_ingressrule_v1beta1_concept.md | 1 + ...enerated_ingressrule_v1beta1_definition.md | 1 + ...generated_ingressstatus_v1beta1_concept.md | 208 +- ...erated_ingressstatus_v1beta1_definition.md | 2 +- ..._generated_iscsivolumesource_v1_concept.md | 36 + ...nerated_iscsivolumesource_v1_definition.md | 22 + .../documents/_generated_job_v1_concept.md | 310 +- .../documents/_generated_job_v1_definition.md | 2 + .../_generated_job_v1beta1_concept.md | 293 +- .../_generated_job_v1beta1_definition.md | 2 + .../_generated_job_v2alpha1_concept.md | 58 +- .../_generated_job_v2alpha1_definition.md | 2 + .../_generated_joblist_v1_concept.md | 70 +- .../_generated_joblist_v1_definition.md | 4 +- .../_generated_joblist_v1beta1_concept.md | 75 +- .../_generated_joblist_v1beta1_definition.md | 4 +- .../_generated_joblist_v2alpha1_concept.md | 9 +- .../_generated_joblist_v2alpha1_definition.md | 2 + .../_generated_jobstatus_v1_concept.md | 208 +- .../_generated_jobstatus_v1_definition.md | 2 +- .../_generated_jobstatus_v1beta1_concept.md | 208 +- ..._generated_jobstatus_v1beta1_definition.md | 2 +- .../_generated_jobstatus_v2alpha1_concept.md | 19 +- .../_generated_keytopath_v1_concept.md | 33 + .../_generated_keytopath_v1_definition.md | 19 + .../_generated_limitrange_v1_concept.md | 107 +- .../_generated_limitrange_v1_definition.md | 2 + .../_generated_limitrangelist_v1_concept.md | 73 + ..._generated_limitrangelist_v1_definition.md | 2 + ...nerated_localobjectreference_v1_concept.md | 2 +- ...ated_localobjectreference_v1_definition.md | 2 +- ...ocalsubjectaccessreview_v1beta1_concept.md | 13 +- ...lsubjectaccessreview_v1beta1_definition.md | 2 + .../_generated_namespace_v1_concept.md | 56 +- .../_generated_namespace_v1_definition.md | 2 + .../_generated_namespacelist_v1_concept.md | 5 +- .../_generated_namespacelist_v1_definition.md | 2 + .../_generated_namespacestatus_v1_concept.md | 19 +- ...generated_networkpolicy_v1beta1_concept.md | 58 +- ...erated_networkpolicy_v1beta1_definition.md | 2 + ...rated_networkpolicylist_v1beta1_concept.md | 9 +- ...ed_networkpolicylist_v1beta1_definition.md | 2 + .../_generated_nfsvolumesource_v1_concept.md | 33 + ...generated_nfsvolumesource_v1_definition.md | 19 + .../documents/_generated_node_v1_concept.md | 164 +- .../_generated_node_v1_definition.md | 2 + .../_generated_nodelist_v1_concept.md | 68 + .../_generated_nodelist_v1_definition.md | 2 + .../_generated_nodestatus_v1_concept.md | 19 +- ...enerated_objectfieldselector_v1_concept.md | 2 +- ...rated_objectfieldselector_v1_definition.md | 2 +- .../_generated_persistentvolume_v1_concept.md | 95 +- ...enerated_persistentvolume_v1_definition.md | 2 + ...erated_persistentvolumeclaim_v1_concept.md | 77 +- ...ted_persistentvolumeclaim_v1_definition.md | 2 + ...ed_persistentvolumeclaimlist_v1_concept.md | 9 +- ...persistentvolumeclaimlist_v1_definition.md | 2 + ...stentvolumeclaimvolumesource_v1_concept.md | 32 + ...ntvolumeclaimvolumesource_v1_definition.md | 18 + ...nerated_persistentvolumelist_v1_concept.md | 2 + ...ated_persistentvolumelist_v1_definition.md | 2 + ...nerated_persistentvolumespec_v1_concept.md | 17 + ...ated_persistentvolumespec_v1_definition.md | 17 + ...onpersistentdiskvolumesource_v1_concept.md | 32 + ...ersistentdiskvolumesource_v1_definition.md | 18 + .../documents/_generated_pod_v1_concept.md | 193 +- .../documents/_generated_pod_v1_definition.md | 2 + ...ted_poddisruptionbudget_v1beta1_concept.md | 293 +- ..._poddisruptionbudget_v1beta1_definition.md | 2 + ...poddisruptionbudgetlist_v1beta1_concept.md | 75 +- ...disruptionbudgetlist_v1beta1_definition.md | 4 +- ...ddisruptionbudgetstatus_v1beta1_concept.md | 208 +- ...sruptionbudgetstatus_v1beta1_definition.md | 2 +- .../_generated_podlist_v1_concept.md | 68 +- .../_generated_podlist_v1_definition.md | 2 + .../_generated_podstatus_v1_concept.md | 19 +- .../_generated_podtemplate_v1_concept.md | 58 +- .../_generated_podtemplate_v1_definition.md | 2 + .../_generated_podtemplatelist_v1_concept.md | 9 +- ...generated_podtemplatelist_v1_definition.md | 2 + .../documents/_generated_probe_v1_concept.md | 3 + .../_generated_probe_v1_definition.md | 3 + ...enerated_quobytevolumesource_v1_concept.md | 35 + ...rated_quobytevolumesource_v1_definition.md | 21 + .../_generated_rbdvolumesource_v1_concept.md | 38 + ...generated_rbdvolumesource_v1_definition.md | 24 + .../_generated_replicaset_v1beta1_concept.md | 84 +- ...generated_replicaset_v1beta1_definition.md | 2 + ...enerated_replicasetlist_v1beta1_concept.md | 2 + ...rated_replicasetlist_v1beta1_definition.md | 2 + ...erated_replicasetstatus_v1beta1_concept.md | 19 +- ...erated_replicationcontroller_v1_concept.md | 58 +- ...ted_replicationcontroller_v1_definition.md | 2 + ...ed_replicationcontrollerlist_v1_concept.md | 9 +- ...replicationcontrollerlist_v1_definition.md | 2 + ..._replicationcontrollerstatus_v1_concept.md | 19 +- ...erated_resourcefieldselector_v1_concept.md | 2 +- ...ted_resourcefieldselector_v1_definition.md | 2 +- .../_generated_resourcequota_v1_concept.md | 259 +- .../_generated_resourcequota_v1_definition.md | 2 + ..._generated_resourcequotalist_v1_concept.md | 9 +- ...nerated_resourcequotalist_v1_definition.md | 2 + ...enerated_resourcequotastatus_v1_concept.md | 191 - .../_generated_role_v1alpha1_concept.md | 126 +- .../_generated_role_v1alpha1_definition.md | 2 + ..._generated_rolebinding_v1alpha1_concept.md | 67 +- ...nerated_rolebinding_v1alpha1_definition.md | 2 + ...erated_rolebindinglist_v1alpha1_concept.md | 2 + ...ted_rolebindinglist_v1alpha1_definition.md | 2 + .../_generated_rolelist_v1alpha1_concept.md | 70 +- ..._generated_rolelist_v1alpha1_definition.md | 4 +- .../documents/_generated_scale_v1_concept.md | 21 +- .../_generated_scale_v1_definition.md | 2 + .../_generated_scale_v1beta1_concept.md | 2 + .../_generated_scale_v1beta1_definition.md | 2 + .../documents/_generated_secret_v1_concept.md | 124 +- .../_generated_secret_v1_definition.md | 2 + ..._generated_secretkeyselector_v1_concept.md | 1 + ...nerated_secretkeyselector_v1_definition.md | 1 + .../_generated_secretlist_v1_concept.md | 68 +- .../_generated_secretlist_v1_definition.md | 2 + ...generated_secretvolumesource_v1_concept.md | 35 + ...erated_secretvolumesource_v1_definition.md | 21 + ...selfsubjectaccessreview_v1beta1_concept.md | 13 +- ...fsubjectaccessreview_v1beta1_definition.md | 2 + .../_generated_service_v1_concept.md | 177 +- .../_generated_service_v1_definition.md | 2 + .../_generated_serviceaccount_v1_concept.md | 65 +- ..._generated_serviceaccount_v1_definition.md | 2 + ...generated_serviceaccountlist_v1_concept.md | 2 + ...erated_serviceaccountlist_v1_definition.md | 2 + .../_generated_servicelist_v1_concept.md | 73 + .../_generated_servicelist_v1_definition.md | 2 + .../_generated_statefulset_v1beta1_concept.md | 325 +- ...enerated_statefulset_v1beta1_definition.md | 2 + ...nerated_statefulsetlist_v1beta1_concept.md | 70 +- ...ated_statefulsetlist_v1beta1_definition.md | 4 +- ...rated_statefulsetstatus_v1beta1_concept.md | 193 +- ...ed_statefulsetstatus_v1beta1_definition.md | 2 +- .../_generated_status_unversioned_concept.md | 2 + ...generated_status_unversioned_definition.md | 2 + ..._generated_storageclass_v1beta1_concept.md | 106 +- ...nerated_storageclass_v1beta1_definition.md | 2 + ...erated_storageclasslist_v1beta1_concept.md | 70 +- ...ted_storageclasslist_v1beta1_definition.md | 4 +- ...ted_subjectaccessreview_v1beta1_concept.md | 13 +- ..._subjectaccessreview_v1beta1_definition.md | 2 + .../_generated_tcpsocketaction_v1_concept.md | 2 +- ...generated_tcpsocketaction_v1_definition.md | 2 +- ...ated_thirdpartyresource_v1beta1_concept.md | 106 +- ...d_thirdpartyresource_v1beta1_definition.md | 2 + ..._thirdpartyresourcelist_v1beta1_concept.md | 70 +- ...irdpartyresourcelist_v1beta1_definition.md | 4 +- .../_generated_tokenreview_v1beta1_concept.md | 13 +- ...enerated_tokenreview_v1beta1_definition.md | 2 + .../documents/_generated_volume_v1_concept.md | 23 + .../_generated_volume_v1_definition.md | 23 + ...pherevirtualdiskvolumesource_v1_concept.md | 32 + ...revirtualdiskvolumesource_v1_definition.md | 18 + docs/api-reference/v1.5/index.html | 11960 +++++++++++----- docs/api-reference/v1.5/manifest.json | 81 + docs/api-reference/v1.5/navData.js | 2 +- ..._generated_apigroup_unversioned_concept.md | 4 + ...nerated_apigroup_unversioned_definition.md | 2 + ...erated_apigrouplist_unversioned_concept.md | 2 + ...ted_apigrouplist_unversioned_definition.md | 2 + ...nerated_apiresource_unversioned_concept.md | 2 + ...ted_apiresourcelist_unversioned_concept.md | 2 + ..._apiresourcelist_unversioned_definition.md | 2 + ...nerated_apiversions_unversioned_concept.md | 2 + ...ated_apiversions_unversioned_definition.md | 2 + ...lasticblockstorevolumesource_v1_concept.md | 36 + ...ticblockstorevolumesource_v1_definition.md | 22 + ...erated_azurediskvolumesource_v1_concept.md | 35 + ...ted_azurediskvolumesource_v1_definition.md | 21 + ...erated_azurefilevolumesource_v1_concept.md | 33 + ...ted_azurefilevolumesource_v1_definition.md | 19 + .../_generated_binding_v1_concept.md | 2 + .../_generated_binding_v1_definition.md | 2 + ...generated_cephfsvolumesource_v1_concept.md | 36 + ...erated_cephfsvolumesource_v1_definition.md | 22 + ...tificatesigningrequest_v1alpha1_concept.md | 4 + ...icatesigningrequest_v1alpha1_definition.md | 2 + ...catesigningrequestlist_v1alpha1_concept.md | 2 + ...esigningrequestlist_v1alpha1_definition.md | 2 + ...generated_cindervolumesource_v1_concept.md | 33 + ...erated_cindervolumesource_v1_definition.md | 19 + ..._generated_clusterrole_v1alpha1_concept.md | 4 + ...nerated_clusterrole_v1alpha1_definition.md | 2 + ...ted_clusterrolebinding_v1alpha1_concept.md | 4 + ..._clusterrolebinding_v1alpha1_definition.md | 2 + ...clusterrolebindinglist_v1alpha1_concept.md | 2 + ...sterrolebindinglist_v1alpha1_definition.md | 2 + ...erated_clusterrolelist_v1alpha1_concept.md | 2 + ...ted_clusterrolelist_v1alpha1_definition.md | 2 + .../_generated_componentstatus_v1_concept.md | 4 + ...generated_componentstatus_v1_definition.md | 2 + ...enerated_componentstatuslist_v1_concept.md | 2 + ...rated_componentstatuslist_v1_definition.md | 2 + .../_generated_configmap_v1_concept.md | 4 + .../_generated_configmap_v1_definition.md | 2 + ...nerated_configmapkeyselector_v1_concept.md | 1 + ...ated_configmapkeyselector_v1_definition.md | 1 + .../_generated_configmaplist_v1_concept.md | 2 + .../_generated_configmaplist_v1_definition.md | 2 + ...erated_configmapvolumesource_v1_concept.md | 35 + ...ted_configmapvolumesource_v1_definition.md | 21 + .../_generated_cronjob_v2alpha1_concept.md | 4 + .../_generated_cronjob_v2alpha1_definition.md | 2 + ..._generated_cronjoblist_v2alpha1_concept.md | 2 + ...nerated_cronjoblist_v2alpha1_definition.md | 2 + .../_generated_daemonset_v1beta1_concept.md | 4 + ..._generated_daemonset_v1beta1_definition.md | 2 + ...generated_daemonsetlist_v1beta1_concept.md | 2 + ...erated_daemonsetlist_v1beta1_definition.md | 2 + .../_generated_deleteoptions_v1_concept.md | 2 + .../_generated_deleteoptions_v1_definition.md | 2 + .../_generated_deployment_v1beta1_concept.md | 10 +- ...generated_deployment_v1beta1_definition.md | 2 + ...enerated_deploymentlist_v1beta1_concept.md | 2 + ...rated_deploymentlist_v1beta1_definition.md | 2 + ...ated_deploymentrollback_v1beta1_concept.md | 2 + ...d_deploymentrollback_v1beta1_definition.md | 2 + ...erated_downwardapivolumefile_v1_concept.md | 34 + ...ted_downwardapivolumefile_v1_definition.md | 20 + ...ated_downwardapivolumesource_v1_concept.md | 32 + ...d_downwardapivolumesource_v1_definition.md | 18 + ...nerated_emptydirvolumesource_v1_concept.md | 31 + ...ated_emptydirvolumesource_v1_definition.md | 17 + .../_generated_endpoints_v1_concept.md | 4 + .../_generated_endpoints_v1_definition.md | 2 + .../_generated_endpointslist_v1_concept.md | 2 + .../_generated_endpointslist_v1_definition.md | 2 + .../documents/_generated_event_v1_concept.md | 4 + .../_generated_event_v1_definition.md | 2 + .../_generated_eventlist_v1_concept.md | 2 + .../_generated_eventlist_v1_definition.md | 2 + .../_generated_eviction_v1beta1_concept.md | 2 + .../_generated_eviction_v1beta1_definition.md | 2 + .../_generated_execaction_v1_concept.md | 2 +- .../_generated_execaction_v1_definition.md | 2 +- .../_generated_fcvolumesource_v1_concept.md | 34 + ..._generated_fcvolumesource_v1_definition.md | 20 + .../_generated_flexvolumesource_v1_concept.md | 35 + ...enerated_flexvolumesource_v1_definition.md | 21 + ...enerated_flockervolumesource_v1_concept.md | 32 + ...rated_flockervolumesource_v1_definition.md | 18 + ...cepersistentdiskvolumesource_v1_concept.md | 36 + ...ersistentdiskvolumesource_v1_definition.md | 22 + ...enerated_gitrepovolumesource_v1_concept.md | 33 + ...rated_gitrepovolumesource_v1_definition.md | 19 + ...erated_glusterfsvolumesource_v1_concept.md | 33 + ...ted_glusterfsvolumesource_v1_definition.md | 19 + ...ated_horizontalpodautoscaler_v1_concept.md | 4 + ...d_horizontalpodautoscaler_v1_definition.md | 2 + ...horizontalpodautoscaler_v1beta1_concept.md | 4 + ...izontalpodautoscaler_v1beta1_definition.md | 2 + ..._horizontalpodautoscalerlist_v1_concept.md | 2 + ...rizontalpodautoscalerlist_v1_definition.md | 2 + ...zontalpodautoscalerlist_v1beta1_concept.md | 2 + ...talpodautoscalerlist_v1beta1_definition.md | 2 + ...nerated_hostpathvolumesource_v1_concept.md | 31 + ...ated_hostpathvolumesource_v1_definition.md | 17 + .../_generated_httpgetaction_v1_concept.md | 2 +- .../_generated_httpgetaction_v1_definition.md | 2 +- ...nerated_httpingresspath_v1beta1_concept.md | 32 + ...ated_httpingresspath_v1beta1_definition.md | 18 + ...ed_httpingressrulevalue_v1beta1_concept.md | 31 + ...httpingressrulevalue_v1beta1_definition.md | 17 + .../_generated_ingress_v1beta1_concept.md | 4 + .../_generated_ingress_v1beta1_definition.md | 2 + ...enerated_ingressbackend_v1beta1_concept.md | 2 +- ...rated_ingressbackend_v1beta1_definition.md | 2 +- .../_generated_ingresslist_v1beta1_concept.md | 2 + ...enerated_ingresslist_v1beta1_definition.md | 2 + .../_generated_ingressrule_v1beta1_concept.md | 1 + ...enerated_ingressrule_v1beta1_definition.md | 1 + ..._generated_iscsivolumesource_v1_concept.md | 36 + ...nerated_iscsivolumesource_v1_definition.md | 22 + .../documents/_generated_job_v1_concept.md | 4 + .../documents/_generated_job_v1_definition.md | 2 + .../_generated_job_v1beta1_concept.md | 4 + .../_generated_job_v1beta1_definition.md | 2 + .../_generated_job_v2alpha1_concept.md | 4 + .../_generated_job_v2alpha1_definition.md | 2 + .../_generated_joblist_v1_concept.md | 2 + .../_generated_joblist_v1_definition.md | 2 + .../_generated_joblist_v1beta1_concept.md | 2 + .../_generated_joblist_v1beta1_definition.md | 2 + .../_generated_joblist_v2alpha1_concept.md | 2 + .../_generated_joblist_v2alpha1_definition.md | 2 + .../_generated_keytopath_v1_concept.md | 33 + .../_generated_keytopath_v1_definition.md | 19 + .../_generated_limitrange_v1_concept.md | 4 + .../_generated_limitrange_v1_definition.md | 2 + .../_generated_limitrangelist_v1_concept.md | 2 + ..._generated_limitrangelist_v1_definition.md | 2 + ...nerated_localobjectreference_v1_concept.md | 2 +- ...ated_localobjectreference_v1_definition.md | 2 +- ...ocalsubjectaccessreview_v1beta1_concept.md | 2 + ...lsubjectaccessreview_v1beta1_definition.md | 2 + .../_generated_namespace_v1_concept.md | 4 + .../_generated_namespace_v1_definition.md | 2 + .../_generated_namespacelist_v1_concept.md | 2 + .../_generated_namespacelist_v1_definition.md | 2 + ...generated_networkpolicy_v1beta1_concept.md | 4 + ...erated_networkpolicy_v1beta1_definition.md | 2 + ...rated_networkpolicylist_v1beta1_concept.md | 2 + ...ed_networkpolicylist_v1beta1_definition.md | 2 + .../_generated_nfsvolumesource_v1_concept.md | 33 + ...generated_nfsvolumesource_v1_definition.md | 19 + .../documents/_generated_node_v1_concept.md | 4 + .../_generated_node_v1_definition.md | 2 + .../_generated_nodelist_v1_concept.md | 2 + .../_generated_nodelist_v1_definition.md | 2 + ...enerated_objectfieldselector_v1_concept.md | 2 +- ...rated_objectfieldselector_v1_definition.md | 2 +- .../_generated_persistentvolume_v1_concept.md | 21 + ...enerated_persistentvolume_v1_definition.md | 2 + ...erated_persistentvolumeclaim_v1_concept.md | 4 + ...ted_persistentvolumeclaim_v1_definition.md | 2 + ...ed_persistentvolumeclaimlist_v1_concept.md | 2 + ...persistentvolumeclaimlist_v1_definition.md | 2 + ...stentvolumeclaimvolumesource_v1_concept.md | 32 + ...ntvolumeclaimvolumesource_v1_definition.md | 18 + ...nerated_persistentvolumelist_v1_concept.md | 2 + ...ated_persistentvolumelist_v1_definition.md | 2 + ...nerated_persistentvolumespec_v1_concept.md | 17 + ...ated_persistentvolumespec_v1_definition.md | 17 + ...onpersistentdiskvolumesource_v1_concept.md | 32 + ...ersistentdiskvolumesource_v1_definition.md | 18 + .../documents/_generated_pod_v1_concept.md | 6 +- .../documents/_generated_pod_v1_definition.md | 2 + ...ted_poddisruptionbudget_v1beta1_concept.md | 4 + ..._poddisruptionbudget_v1beta1_definition.md | 2 + ...poddisruptionbudgetlist_v1beta1_concept.md | 2 + ...disruptionbudgetlist_v1beta1_definition.md | 2 + .../_generated_podlist_v1_concept.md | 2 + .../_generated_podlist_v1_definition.md | 2 + .../_generated_podtemplate_v1_concept.md | 4 + .../_generated_podtemplate_v1_definition.md | 2 + .../_generated_podtemplatelist_v1_concept.md | 2 + ...generated_podtemplatelist_v1_definition.md | 2 + .../documents/_generated_probe_v1_concept.md | 3 + .../_generated_probe_v1_definition.md | 3 + ...enerated_quobytevolumesource_v1_concept.md | 35 + ...rated_quobytevolumesource_v1_definition.md | 21 + .../_generated_rbdvolumesource_v1_concept.md | 38 + ...generated_rbdvolumesource_v1_definition.md | 24 + .../_generated_replicaset_v1beta1_concept.md | 4 + ...generated_replicaset_v1beta1_definition.md | 2 + ...enerated_replicasetlist_v1beta1_concept.md | 2 + ...rated_replicasetlist_v1beta1_definition.md | 2 + ...erated_replicationcontroller_v1_concept.md | 4 + ...ted_replicationcontroller_v1_definition.md | 2 + ...ed_replicationcontrollerlist_v1_concept.md | 2 + ...replicationcontrollerlist_v1_definition.md | 2 + ...erated_resourcefieldselector_v1_concept.md | 2 +- ...ted_resourcefieldselector_v1_definition.md | 2 +- .../_generated_resourcequota_v1_concept.md | 4 + .../_generated_resourcequota_v1_definition.md | 2 + ..._generated_resourcequotalist_v1_concept.md | 2 + ...nerated_resourcequotalist_v1_definition.md | 2 + .../_generated_role_v1alpha1_concept.md | 4 + .../_generated_role_v1alpha1_definition.md | 2 + ..._generated_rolebinding_v1alpha1_concept.md | 4 + ...nerated_rolebinding_v1alpha1_definition.md | 2 + ...erated_rolebindinglist_v1alpha1_concept.md | 2 + ...ted_rolebindinglist_v1alpha1_definition.md | 2 + .../_generated_rolelist_v1alpha1_concept.md | 2 + ..._generated_rolelist_v1alpha1_definition.md | 2 + .../documents/_generated_scale_v1_concept.md | 2 + .../_generated_scale_v1_definition.md | 2 + .../_generated_scale_v1beta1_concept.md | 2 + .../_generated_scale_v1beta1_definition.md | 2 + .../documents/_generated_secret_v1_concept.md | 4 + .../_generated_secret_v1_definition.md | 2 + ..._generated_secretkeyselector_v1_concept.md | 1 + ...nerated_secretkeyselector_v1_definition.md | 1 + .../_generated_secretlist_v1_concept.md | 2 + .../_generated_secretlist_v1_definition.md | 2 + ...generated_secretvolumesource_v1_concept.md | 35 + ...erated_secretvolumesource_v1_definition.md | 21 + ...selfsubjectaccessreview_v1beta1_concept.md | 2 + ...fsubjectaccessreview_v1beta1_definition.md | 2 + .../_generated_service_v1_concept.md | 4 + .../_generated_service_v1_definition.md | 2 + .../_generated_serviceaccount_v1_concept.md | 4 + ..._generated_serviceaccount_v1_definition.md | 2 + ...generated_serviceaccountlist_v1_concept.md | 2 + ...erated_serviceaccountlist_v1_definition.md | 2 + .../_generated_servicelist_v1_concept.md | 2 + .../_generated_servicelist_v1_definition.md | 2 + .../_generated_statefulset_v1beta1_concept.md | 4 + ...enerated_statefulset_v1beta1_definition.md | 2 + ...nerated_statefulsetlist_v1beta1_concept.md | 2 + ...ated_statefulsetlist_v1beta1_definition.md | 2 + .../_generated_status_unversioned_concept.md | 2 + ...generated_status_unversioned_definition.md | 2 + ..._generated_storageclass_v1beta1_concept.md | 4 + ...nerated_storageclass_v1beta1_definition.md | 2 + ...erated_storageclasslist_v1beta1_concept.md | 2 + ...ted_storageclasslist_v1beta1_definition.md | 2 + ...ted_subjectaccessreview_v1beta1_concept.md | 2 + ..._subjectaccessreview_v1beta1_definition.md | 2 + .../_generated_tcpsocketaction_v1_concept.md | 2 +- ...generated_tcpsocketaction_v1_definition.md | 2 +- ...ated_thirdpartyresource_v1beta1_concept.md | 4 + ...d_thirdpartyresource_v1beta1_definition.md | 2 + ..._thirdpartyresourcelist_v1beta1_concept.md | 2 + ...irdpartyresourcelist_v1beta1_definition.md | 2 + .../_generated_tokenreview_v1beta1_concept.md | 2 + ...enerated_tokenreview_v1beta1_definition.md | 2 + .../documents/_generated_volume_v1_concept.md | 23 + .../_generated_volume_v1_definition.md | 23 + ...pherevirtualdiskvolumesource_v1_concept.md | 32 + ...revirtualdiskvolumesource_v1_definition.md | 18 + docs/resources-reference/v1.5/index.html | 2085 ++- docs/resources-reference/v1.5/manifest.json | 81 + docs/resources-reference/v1.5/navData.js | 2 +- 541 files changed, 19392 insertions(+), 7312 deletions(-) create mode 100644 docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_keytopath_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_keytopath_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md create mode 100644 docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md create mode 100644 docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_keytopath_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_keytopath_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md create mode 100644 docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md diff --git a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md index d7cbddabc9..d4732c1cea 100644 --- a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md @@ -22,6 +22,8 @@ Appears In APIGroupList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | name is the name of the group. preferredVersion
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. @@ -34,7 +36,9 @@ versions
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversione Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md index ecd323fb0c..d6d1173eb5 100644 --- a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md @@ -13,6 +13,8 @@ Appears In APIGroupList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | name is the name of the group. preferredVersion
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. diff --git a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md index 30c2b10a97..99c9d0d8fe 100644 --- a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md @@ -21,7 +21,9 @@ APIGroupList is a list of APIGroup, to allow clients to discover the API at /api Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md index ceec2e96f3..6267bf8f48 100644 --- a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md @@ -12,5 +12,7 @@ APIGroupList is a list of APIGroup, to allow clients to discover the API at /api Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md index da0db93926..2f87ebff79 100644 --- a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md @@ -33,7 +33,9 @@ namespaced
*boolean* | namespaced indicates if a resource is namespaced Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md index 7094c8d3ea..5bb170d54c 100644 --- a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md @@ -21,7 +21,9 @@ APIResourceList is a list of APIResource, it is used to expose the name of the r Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md index adb1d939dd..b5b7649e2f 100644 --- a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md @@ -12,6 +12,8 @@ APIResourceList is a list of APIResource, it is used to expose the name of the r Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md index 03be0bc7bd..31aa6a658a 100644 --- a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md @@ -21,6 +21,8 @@ APIVersions lists the versions that are available, to allow clients to discover Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. versions
*string array* | versions are the api versions that are available. diff --git a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md index b3ead69c61..3513f89da7 100644 --- a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md @@ -12,6 +12,8 @@ APIVersions lists the versions that are available, to allow clients to discover Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. versions
*string array* | versions are the api versions that are available. diff --git a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md new file mode 100644 index 0000000000..9dda8fcf2a --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# AWSElasticBlockStoreVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AWSElasticBlockStoreVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). +readOnly
*boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +volumeID
*string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md new file mode 100644 index 0000000000..3c4d7e2d21 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## AWSElasticBlockStoreVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AWSElasticBlockStoreVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). +readOnly
*boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +volumeID
*string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + diff --git a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md new file mode 100644 index 0000000000..1043b9d9ae --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# AzureDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureDiskVolumeSource + + + + + + + +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +cachingMode
*string* | Host Caching mode: None, Read Only, Read Write. +diskName
*string* | The Name of the data disk in the blob storage +diskURI
*string* | The URI the data disk in the blob storage +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md new file mode 100644 index 0000000000..191a407952 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## AzureDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureDiskVolumeSource + + + +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +cachingMode
*string* | Host Caching mode: None, Read Only, Read Write. +diskName
*string* | The Name of the data disk in the blob storage +diskURI
*string* | The URI the data disk in the blob storage +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + diff --git a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md new file mode 100644 index 0000000000..a9dc6186b1 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# AzureFileVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureFileVolumeSource + + + + + + + +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretName
*string* | the name of secret that contains Azure Storage Account Name and Key +shareName
*string* | Share Name + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md new file mode 100644 index 0000000000..2382e73e4c --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## AzureFileVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureFileVolumeSource + + + +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretName
*string* | the name of secret that contains Azure Storage Account Name and Key +shareName
*string* | Share Name + diff --git a/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md index 35f35035a7..6c7d6bf32a 100644 --- a/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md @@ -21,6 +21,8 @@ Binding ties one object to another. For example, a pod is bound to a node by a s Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata target
*[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. @@ -77,10 +79,19 @@ create a Binding Parameter | Description ------------ | ----------- -body
*[Binding](#binding-v1)* | namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Binding](#binding-v1)* | ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md index 59adcd0427..32e2a31908 100644 --- a/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md @@ -12,6 +12,8 @@ Binding ties one object to another. For example, a pod is bound to a node by a s Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata target
*[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. diff --git a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..1911dac73b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# CephFSVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CephFSVolumeSource + + + + + + + +Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +monitors
*string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +path
*string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretFile
*string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +user
*string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..d672f53c08 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## CephFSVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CephFSVolumeSource + + + +Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +monitors
*string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +path
*string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretFile
*string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +user
*string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md index 91a3e7e2ca..3906344d6e 100644 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In CertificateSigningR Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. status
*[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. @@ -55,7 +57,9 @@ conditions
*[CertificateSigningRequestCondition](#certificatesigningreque Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | @@ -106,13 +110,14 @@ create a CertificateSigningRequest `POST /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -171,10 +176,15 @@ replace the specified CertificateSigningRequest Parameter | Description ------------ | ----------- name | name of the CertificateSigningRequest -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | @@ -232,10 +242,15 @@ partially update the specified CertificateSigningRequest Parameter | Description ------------ | ----------- name | name of the CertificateSigningRequest -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -293,16 +308,21 @@ delete a CertificateSigningRequest Parameter | Description ------------ | ----------- name | name of the CertificateSigningRequest -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -351,22 +371,19 @@ delete collection of CertificateSigningRequest `DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -425,15 +442,16 @@ read the specified CertificateSigningRequest Parameter | Description ------------ | ----------- name | name of the CertificateSigningRequest -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -482,22 +500,19 @@ list or watch objects of kind CertificateSigningRequest `GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -548,11 +563,16 @@ watch changes to an object of kind CertificateSigningRequest ### Path Parameters +Parameter | Description +------------ | ----------- +name | name of the CertificateSigningRequest + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -name | name of the CertificateSigningRequest pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md index 97de9b5ead..273683ba2f 100644 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In
CertificateSigning Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. status
*[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md index f06b45882c..0fadb04d10 100644 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md @@ -21,7 +21,9 @@ Certificates | v1alpha1 | CertificateSigningRequestList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | @@ -73,7 +75,8 @@ watch individual changes to a list of CertificateSigningRequest `GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md index b618ce6a40..d97323b2c8 100644 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md @@ -12,6 +12,8 @@ Certificates | v1alpha1 | CertificateSigningRequestList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md index dd927e259b..e69876a567 100644 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md @@ -78,10 +78,19 @@ replace status of the specified CertificateSigningRequest Parameter | Description ------------ | ----------- -body
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | name | name of the CertificateSigningRequest + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md new file mode 100644 index 0000000000..d31493f61a --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# CinderVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CinderVolumeSource + + + + + + + +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. + +
+ +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +volumeID
*string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md new file mode 100644 index 0000000000..670fb61930 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## CinderVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CinderVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +volumeID
*string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md index 6e829a2d86..0691f97e14 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In ClusterRoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole @@ -32,7 +34,9 @@ rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the P Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. @@ -83,13 +87,14 @@ create a ClusterRole `POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -148,10 +153,15 @@ replace the specified ClusterRole Parameter | Description ------------ | ----------- name | name of the ClusterRole -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ClusterRole](#clusterrole-v1alpha1)* | @@ -209,10 +219,15 @@ partially update the specified ClusterRole Parameter | Description ------------ | ----------- name | name of the ClusterRole -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -270,16 +285,21 @@ delete a ClusterRole Parameter | Description ------------ | ----------- name | name of the ClusterRole -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -328,22 +348,19 @@ delete collection of ClusterRole `DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -402,6 +419,11 @@ read the specified ClusterRole Parameter | Description ------------ | ----------- name | name of the ClusterRole + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -453,22 +475,19 @@ list or watch objects of kind ClusterRole `GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -521,64 +540,9 @@ watch changes to an object of kind ClusterRole Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ClusterRole -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ClusterRole - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md index a72d95634c..c36ca7eb77 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In ClusterRoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md index 8e39037a88..9d249c7387 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In ClusterRoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. @@ -33,7 +35,9 @@ subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds reference Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. @@ -84,13 +88,14 @@ create a ClusterRoleBinding `POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -149,10 +154,15 @@ replace the specified ClusterRoleBinding Parameter | Description ------------ | ----------- name | name of the ClusterRoleBinding -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | @@ -210,10 +220,15 @@ partially update the specified ClusterRoleBinding Parameter | Description ------------ | ----------- name | name of the ClusterRoleBinding -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -271,16 +286,21 @@ delete a ClusterRoleBinding Parameter | Description ------------ | ----------- name | name of the ClusterRoleBinding -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -329,22 +349,19 @@ delete collection of ClusterRoleBinding `DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -403,6 +420,11 @@ read the specified ClusterRoleBinding Parameter | Description ------------ | ----------- name | name of the ClusterRoleBinding + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -454,22 +476,19 @@ list or watch objects of kind ClusterRoleBinding `GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -520,11 +539,77 @@ watch changes to an object of kind ClusterRoleBinding ### Path Parameters +Parameter | Description +------------ | ----------- +name | name of the ClusterRoleBinding + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of ClusterRoleBinding + +### HTTP Request + +`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings` + + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -name | name of the ClusterRoleBinding pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md index 2359f2cec6..ca190657a5 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In ClusterRoleBindingList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md index 2f6cc5edf7..a43a158ede 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleBindingList +Core | v1alpha1 | ClusterRoleBindingList @@ -21,76 +21,13 @@ ClusterRoleBindingList is a collection of ClusterRoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ClusterRoleBinding - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md index cbf72459fc..d2c0dbcf80 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleBindingList +Core | v1alpha1 | ClusterRoleBindingList @@ -12,6 +12,8 @@ ClusterRoleBindingList is a collection of ClusterRoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md index fc2468dc6e..bba333ae62 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1alpha1 | ClusterRoleList +RbacAuthorization | v1alpha1 | ClusterRoleList @@ -21,11 +21,79 @@ ClusterRoleList is a collection of ClusterRoles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of ClusterRole + +### HTTP Request + +`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles` + + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md index de3b45bd16..416a354cab 100644 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1alpha1 | ClusterRoleList +RbacAuthorization | v1alpha1 | ClusterRoleList @@ -12,6 +12,8 @@ ClusterRoleList is a collection of ClusterRoles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md index 18a7cf067f..7952df3b88 100644 --- a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md @@ -22,7 +22,9 @@ Appears In ComponentStatusList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources conditions
*[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -32,7 +34,9 @@ metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. Mo Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -88,6 +92,11 @@ read the specified ComponentStatus Parameter | Description ------------ | ----------- name | name of the ComponentStatus + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -139,7 +148,8 @@ list objects of kind ComponentStatus `GET /api/v1/componentstatuses` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md index e341d6f384..efbd73394a 100644 --- a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md @@ -13,6 +13,8 @@ Appears In ComponentStatusList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources conditions
*[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md index 812ce55079..b4445da385 100644 --- a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md @@ -21,7 +21,9 @@ Status of all the conditions for the component as a list of ComponentStatus obje Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md index b1944475b2..02c154761e 100644 --- a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md @@ -12,6 +12,8 @@ Status of all the conditions for the component as a list of ComponentStatus obje Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md index d31e5aac23..3ef2d92fbf 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md @@ -22,7 +22,9 @@ Appears In ConfigMapList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -32,7 +34,9 @@ metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. Mo Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -88,10 +92,15 @@ create a ConfigMap Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ConfigMap](#configmap-v1)* | @@ -150,10 +159,15 @@ Parameter | Description ------------ | ----------- name | name of the ConfigMap namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ConfigMap](#configmap-v1)* | @@ -212,10 +226,15 @@ Parameter | Description ------------ | ----------- name | name of the ConfigMap namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -274,16 +293,21 @@ Parameter | Description ------------ | ----------- name | name of the ConfigMap namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -337,18 +361,19 @@ delete collection of ConfigMap Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -408,15 +433,16 @@ Parameter | Description ------------ | ----------- name | name of the ConfigMap namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -470,18 +496,19 @@ list or watch objects of kind ConfigMap Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -530,7 +557,8 @@ list or watch objects of kind ConfigMap `GET /api/v1/configmaps` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -594,10 +622,15 @@ watch changes to an object of kind ConfigMap Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ConfigMap namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -652,7 +685,8 @@ watch individual changes to a list of ConfigMap `GET /api/v1/watch/configmaps` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md index 8fc7e1587e..b5864ad664 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md @@ -13,6 +13,8 @@ Appears In ConfigMapList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md index a602f360e4..8cb9c40d2d 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md @@ -23,6 +23,7 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key to select. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md index cfb66d4cd7..00e98b82bb 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md @@ -14,4 +14,5 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key to select. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md index 799ed34747..337e57078d 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md @@ -21,7 +21,9 @@ ConfigMapList is a resource containing a list of ConfigMap objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -75,11 +77,16 @@ watch individual changes to a list of ConfigMap ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md index 1e88bdb0d7..32e00ed55e 100644 --- a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md @@ -12,6 +12,8 @@ ConfigMapList is a resource containing a list of ConfigMap objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md new file mode 100644 index 0000000000..5dd5e2b183 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# ConfigMapVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ConfigMapVolumeSource + + + + + + + +Adapts a ConfigMap into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md new file mode 100644 index 0000000000..e171a6f0d6 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## ConfigMapVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ConfigMapVolumeSource + + + +Adapts a ConfigMap into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names + diff --git a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md index a23099c608..f9084661df 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md @@ -22,6 +22,8 @@ Appears In CronJobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -56,7 +58,9 @@ lastScheduleTime
*[Time](#time-unversioned)* | LastScheduleTime keeps in Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -112,10 +116,15 @@ create a CronJob Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[CronJob](#cronjob-v2alpha1)* | @@ -174,10 +183,15 @@ Parameter | Description ------------ | ----------- name | name of the CronJob namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[CronJob](#cronjob-v2alpha1)* | @@ -236,10 +250,15 @@ Parameter | Description ------------ | ----------- name | name of the CronJob namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -298,16 +317,21 @@ Parameter | Description ------------ | ----------- name | name of the CronJob namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -361,18 +385,19 @@ delete collection of CronJob Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -432,15 +457,16 @@ Parameter | Description ------------ | ----------- name | name of the CronJob namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -494,18 +520,19 @@ list or watch objects of kind CronJob Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -554,7 +581,8 @@ list or watch objects of kind CronJob `GET /apis/batch/v2alpha1/cronjobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -618,10 +646,81 @@ watch changes to an object of kind CronJob Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the CronJob namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of CronJob + +### HTTP Request + +`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -676,7 +775,8 @@ watch individual changes to a list of CronJob `GET /apis/batch/v2alpha1/watch/cronjobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -696,4 +796,205 @@ Code | Description +## Status Operations + +See supported operations below... + +## Patch Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified CronJob + +### HTTP Request + +`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the CronJob +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[CronJob](#cronjob-v2alpha1)* | OK + + +## Read Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified CronJob + +### HTTP Request + +`GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the CronJob +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[CronJob](#cronjob-v2alpha1)* | OK + + +## Replace Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified CronJob + +### HTTP Request + +`PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the CronJob +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[CronJob](#cronjob-v2alpha1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[CronJob](#cronjob-v2alpha1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md index 5261111779..a3477fe785 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md @@ -13,6 +13,8 @@ Appears In CronJobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md index 4661f733e0..f63337e893 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v2alpha1 | CronJobList +Core | v2alpha1 | CronJobList @@ -21,77 +21,13 @@ CronJobList is a collection of cron jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md index 3c57015261..9c0f2059d8 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v2alpha1 | CronJobList +Core | v2alpha1 | CronJobList @@ -12,6 +12,8 @@ CronJobList is a collection of cron jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md index a10a62b846..3bd2980690 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v2alpha1 | CronJobStatus +Core | v2alpha1 | CronJobStatus @@ -29,195 +29,4 @@ lastScheduleTime
*[Time](#time-unversioned)* | LastScheduleTime keeps in -## Write Operations - -See supported operations below... - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified CronJob - -### HTTP Request - -`PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[CronJob](#cronjob-v2alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[CronJob](#cronjob-v2alpha1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified CronJob - -### HTTP Request - -`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[CronJob](#cronjob-v2alpha1)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[CronJob](#cronjob-v2alpha1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md index a38a9cd2a6..021803c3e1 100644 --- a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v2alpha1 | CronJobStatus +Core | v2alpha1 | CronJobStatus diff --git a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md index aa7a6d8b49..c44c764460 100644 --- a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md @@ -84,6 +84,8 @@ Appears In DaemonSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[DaemonSetSpec](#daemonsetspec-v1beta1)* | Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[DaemonSetStatus](#daemonsetstatus-v1beta1)* | Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -117,7 +119,9 @@ numberReady
*integer* | NumberReady is the number of nodes that should b Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -276,10 +280,15 @@ create a DaemonSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[DaemonSet](#daemonset-v1beta1)* | @@ -338,10 +347,15 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[DaemonSet](#daemonset-v1beta1)* | @@ -400,10 +414,15 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -473,16 +492,21 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -536,18 +560,19 @@ delete collection of DaemonSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -608,15 +633,16 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -670,18 +696,19 @@ list or watch objects of kind DaemonSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -730,7 +757,8 @@ list or watch objects of kind DaemonSet `GET /apis/extensions/v1beta1/daemonsets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -794,71 +822,15 @@ watch changes to an object of kind DaemonSet Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of DaemonSet - -### HTTP Request - -`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -913,7 +885,8 @@ watch individual changes to a list of DaemonSet `GET /apis/extensions/v1beta1/watch/daemonsets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -984,10 +957,15 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -1046,6 +1024,11 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -1103,10 +1086,15 @@ Parameter | Description ------------ | ----------- name | name of the DaemonSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[DaemonSet](#daemonset-v1beta1)* | diff --git a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md index 1069e275ce..28fadff234 100644 --- a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In DaemonSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[DaemonSetSpec](#daemonsetspec-v1beta1)* | Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[DaemonSetStatus](#daemonsetstatus-v1beta1)* | Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md index c22521c81e..708fbb69e2 100644 --- a/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | DaemonSetList +Extensions | v1beta1 | DaemonSetList @@ -21,11 +21,84 @@ DaemonSetList is a collection of daemon sets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of DaemonSet + +### HTTP Request + +`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md index 8ccfbfd6bd..0c7f6a1977 100644 --- a/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | DaemonSetList +Extensions | v1beta1 | DaemonSetList @@ -12,6 +12,8 @@ DaemonSetList is a collection of daemon sets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md index 6c93799473..761715e2a5 100644 --- a/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md @@ -22,7 +22,9 @@ Appears In Eviction Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources gracePeriodSeconds
*integer* | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds orphanDependents
*boolean* | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. preconditions
*[Preconditions](#preconditions-v1)* | Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. diff --git a/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md index f80a9faa84..c48a6834aa 100644 --- a/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md @@ -13,7 +13,9 @@ Appears In Eviction Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources gracePeriodSeconds
*integer* | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds orphanDependents
*boolean* | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. preconditions
*[Preconditions](#preconditions-v1)* | Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. diff --git a/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md index 0a1c4abb19..cdffd17366 100644 --- a/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md @@ -15,8 +15,8 @@ metadata: spec: # 3 Pods should exist at all times. replicas: 3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit: 10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit: 2 template: metadata: labels: @@ -43,8 +43,8 @@ metadata: spec: # 3 Pods should exist at all times. replicas: 3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit: 10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit: 2 template: metadata: labels: @@ -78,6 +78,8 @@ Appears In DeploymentList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. spec
*[DeploymentSpec](#deploymentspec-v1beta1)* | Specification of the desired behavior of the Deployment. status
*[DeploymentStatus](#deploymentstatus-v1beta1)* | Most recently observed status of the Deployment. @@ -120,7 +122,9 @@ updatedReplicas
*integer* | Total number of non-terminated pods targeted Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. ### DeploymentStrategy v1beta1 @@ -139,6 +143,8 @@ type
*string* | Type of deployment. Can be "Recreate" or "RollingUpdate" Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment @@ -303,10 +309,15 @@ create a Deployment Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Deployment](#deployment-v1beta1)* | @@ -468,10 +479,15 @@ Parameter | Description ------------ | ----------- name | name of the Deployment namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Deployment](#deployment-v1beta1)* | @@ -604,10 +620,15 @@ Parameter | Description ------------ | ----------- name | name of the Deployment namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -677,16 +698,21 @@ Parameter | Description ------------ | ----------- name | name of the Deployment namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -740,18 +766,19 @@ delete collection of Deployment Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -950,15 +977,16 @@ Parameter | Description ------------ | ----------- name | name of the Deployment namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -1295,18 +1323,19 @@ list or watch objects of kind Deployment Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -1355,7 +1384,8 @@ list or watch objects of kind Deployment `GET /apis/extensions/v1beta1/deployments` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1566,10 +1596,15 @@ watch changes to an object of kind Deployment Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Deployment namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1626,11 +1661,16 @@ watch individual changes to a list of Deployment ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1685,7 +1725,8 @@ watch individual changes to a list of Deployment `GET /apis/extensions/v1beta1/watch/deployments` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1705,6 +1746,207 @@ Code | Description +## Status Operations + +See supported operations below... + +## Patch Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified Deployment + +### HTTP Request + +`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Deployment +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Deployment](#deployment-v1beta1)* | OK + + +## Read Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified Deployment + +### HTTP Request + +`GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Deployment +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[Deployment](#deployment-v1beta1)* | OK + + +## Replace Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified Deployment + +### HTTP Request + +`PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Deployment +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Deployment](#deployment-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Deployment](#deployment-v1beta1)* | OK + + + ## Misc Operations See supported operations below... @@ -1756,6 +1998,11 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -1813,10 +2060,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Scale](#scale-v1beta1)* | @@ -1875,10 +2127,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -1935,11 +2192,20 @@ create rollback of a DeploymentRollback Parameter | Description ------------ | ----------- -body
*[DeploymentRollback](#deploymentrollback-v1beta1)* | name | name of the DeploymentRollback namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeploymentRollback](#deploymentrollback-v1beta1)* | ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md index 038546fd9b..4da349de2f 100644 --- a/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In DeploymentList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. spec
*[DeploymentSpec](#deploymentspec-v1beta1)* | Specification of the desired behavior of the Deployment. status
*[DeploymentStatus](#deploymentstatus-v1beta1)* | Most recently observed status of the Deployment. diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md index d52e0cd593..bdf4905e2f 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md @@ -21,7 +21,9 @@ DeploymentList is a list of Deployments. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md index ade93da4a1..c14fbead74 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md @@ -12,6 +12,8 @@ DeploymentList is a list of Deployments. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md index 2aba30d0ca..99f95e00eb 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md @@ -21,6 +21,8 @@ DeploymentRollback stores the information required to rollback a deployment. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md index 488a27e29f..40f828f6ae 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md @@ -12,6 +12,8 @@ DeploymentRollback stores the information required to rollback a deployment. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md index e2ea5c1b57..a48b1826d3 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Extensions | v1beta1 | DeploymentStatus +Core | v1beta1 | DeploymentStatus @@ -33,195 +33,4 @@ updatedReplicas
*integer* | Total number of non-terminated pods targeted -## Write Operations - -See supported operations below... - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified Deployment - -### HTTP Request - -`PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Deployment -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Deployment](#deployment-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Deployment](#deployment-v1beta1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified Deployment - -### HTTP Request - -`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Deployment -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Deployment](#deployment-v1beta1)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified Deployment - -### HTTP Request - -`GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Deployment -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[Deployment](#deployment-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md index bec3badea1..267b92166f 100644 --- a/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Extensions | v1beta1 | DeploymentStatus +Core | v1beta1 | DeploymentStatus diff --git a/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md new file mode 100644 index 0000000000..a71251d5a4 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md @@ -0,0 +1,34 @@ + + +----------- +# DownwardAPIVolumeFile v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeFile + + + + + + + +DownwardAPIVolumeFile represents information to create the file containing the pod field + + + +Field | Description +------------ | ----------- +fieldRef
*[ObjectFieldSelector](#objectfieldselector-v1)* | Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' +resourceFieldRef
*[ResourceFieldSelector](#resourcefieldselector-v1)* | Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md new file mode 100644 index 0000000000..1551ed1ddf --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md @@ -0,0 +1,20 @@ +## DownwardAPIVolumeFile v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeFile + + + +DownwardAPIVolumeFile represents information to create the file containing the pod field + + + +Field | Description +------------ | ----------- +fieldRef
*[ObjectFieldSelector](#objectfieldselector-v1)* | Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' +resourceFieldRef
*[ResourceFieldSelector](#resourcefieldselector-v1)* | Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + diff --git a/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md new file mode 100644 index 0000000000..1e7faa3e0a --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# DownwardAPIVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeSource + + + + + + + +DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[DownwardAPIVolumeFile](#downwardapivolumefile-v1) array* | Items is a list of downward API volume file + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md new file mode 100644 index 0000000000..7cee35155f --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## DownwardAPIVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeSource + + + +DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[DownwardAPIVolumeFile](#downwardapivolumefile-v1) array* | Items is a list of downward API volume file + diff --git a/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md new file mode 100644 index 0000000000..d46dace5fb --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# EmptyDirVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | EmptyDirVolumeSource + + + + + + + +Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +medium
*string* | What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md new file mode 100644 index 0000000000..32cde1bbd7 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md @@ -0,0 +1,17 @@ +## EmptyDirVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | EmptyDirVolumeSource + + + +Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +medium
*string* | What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir + diff --git a/docs/api-reference/v1.5/documents/_generated_endpoints_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_endpoints_v1_concept.md index 9adb5972f2..f46e98bc8a 100644 --- a/docs/api-reference/v1.5/documents/_generated_endpoints_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_endpoints_v1_concept.md @@ -33,6 +33,8 @@ Appears In EndpointsList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata subsets
*[EndpointSubset](#endpointsubset-v1) array* | 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. @@ -43,7 +45,9 @@ subsets
*[EndpointSubset](#endpointsubset-v1) array* | The set of all en Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -99,10 +103,15 @@ create Endpoints Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Endpoints](#endpoints-v1)* | @@ -161,10 +170,15 @@ Parameter | Description ------------ | ----------- name | name of the Endpoints namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Endpoints](#endpoints-v1)* | @@ -223,10 +237,15 @@ Parameter | Description ------------ | ----------- name | name of the Endpoints namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -285,16 +304,21 @@ Parameter | Description ------------ | ----------- name | name of the Endpoints namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -348,18 +372,19 @@ delete collection of Endpoints Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -419,15 +444,16 @@ Parameter | Description ------------ | ----------- name | name of the Endpoints namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -481,18 +507,19 @@ list or watch objects of kind Endpoints Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -541,7 +568,8 @@ list or watch objects of kind Endpoints `GET /api/v1/endpoints` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -605,10 +633,81 @@ watch changes to an object of kind Endpoints Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Endpoints namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Endpoints + +### HTTP Request + +`GET /api/v1/watch/namespaces/{namespace}/endpoints` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -663,7 +762,8 @@ watch individual changes to a list of Endpoints `GET /api/v1/watch/endpoints` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_endpoints_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_endpoints_v1_definition.md index f0762826f4..6a9e205157 100644 --- a/docs/api-reference/v1.5/documents/_generated_endpoints_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_endpoints_v1_definition.md @@ -24,6 +24,8 @@ Appears In EndpointsList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata subsets
*[EndpointSubset](#endpointsubset-v1) array* | 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. diff --git a/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_concept.md index 24ca305e62..f50b6f092e 100644 --- a/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_concept.md @@ -21,77 +21,13 @@ EndpointsList is a list of endpoints. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Endpoints - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/endpoints` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_definition.md index af940aa424..532f821e9a 100644 --- a/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_endpointslist_v1_definition.md @@ -12,6 +12,8 @@ EndpointsList is a list of endpoints. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_event_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_event_v1_concept.md index db06f96f86..aceadbacd7 100644 --- a/docs/api-reference/v1.5/documents/_generated_event_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_event_v1_concept.md @@ -22,9 +22,11 @@ Appears In EventList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources count
*integer* | The number of times this event has occurred. firstTimestamp
*[Time](#time-unversioned)* | The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) involvedObject
*[ObjectReference](#objectreference-v1)* | The object that this event is about. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds lastTimestamp
*[Time](#time-unversioned)* | The time at which the most recent occurrence of this event was recorded. message
*string* | A human-readable description of the status of this operation. metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -39,7 +41,9 @@ type
*string* | Type of this event (Normal, Warning), new types could be Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -95,10 +99,15 @@ create an Event Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Event](#event-v1)* | @@ -157,10 +166,15 @@ Parameter | Description ------------ | ----------- name | name of the Event namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Event](#event-v1)* | @@ -219,10 +233,15 @@ Parameter | Description ------------ | ----------- name | name of the Event namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -281,16 +300,21 @@ Parameter | Description ------------ | ----------- name | name of the Event namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -344,18 +368,19 @@ delete collection of Event Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -415,15 +440,16 @@ Parameter | Description ------------ | ----------- name | name of the Event namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -477,18 +503,19 @@ list or watch objects of kind Event Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -537,7 +564,8 @@ list or watch objects of kind Event `GET /api/v1/events` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -601,10 +629,15 @@ watch changes to an object of kind Event Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Event namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -659,7 +692,8 @@ watch individual changes to a list of Event `GET /api/v1/watch/events` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_event_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_event_v1_definition.md index 6b4cc740f3..5333f9785c 100644 --- a/docs/api-reference/v1.5/documents/_generated_event_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_event_v1_definition.md @@ -13,9 +13,11 @@ Appears In EventList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources count
*integer* | The number of times this event has occurred. firstTimestamp
*[Time](#time-unversioned)* | The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) involvedObject
*[ObjectReference](#objectreference-v1)* | The object that this event is about. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds lastTimestamp
*[Time](#time-unversioned)* | The time at which the most recent occurrence of this event was recorded. message
*string* | A human-readable description of the status of this operation. metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_eventlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_eventlist_v1_concept.md index ae900816bf..836a2035a4 100644 --- a/docs/api-reference/v1.5/documents/_generated_eventlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_eventlist_v1_concept.md @@ -21,7 +21,9 @@ EventList is a list of events. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -75,11 +77,16 @@ watch individual changes to a list of Event ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_eventlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_eventlist_v1_definition.md index cd4442b41e..c168720694 100644 --- a/docs/api-reference/v1.5/documents/_generated_eventlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_eventlist_v1_definition.md @@ -12,6 +12,8 @@ EventList is a list of events. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md index 5aecddc85d..c50f9d2979 100644 --- a/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md @@ -21,7 +21,9 @@ Eviction evicts a pod from its node subject to certain policies and safety const Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources deleteOptions
*[DeleteOptions](#deleteoptions-v1)* | DeleteOptions may be provided +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | ObjectMeta describes the pod that is being evicted. diff --git a/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md index ff42320589..0444d0f3d6 100644 --- a/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md @@ -12,6 +12,8 @@ Eviction evicts a pod from its node subject to certain policies and safety const Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources deleteOptions
*[DeleteOptions](#deleteoptions-v1)* | DeleteOptions may be provided +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | ObjectMeta describes the pod that is being evicted. diff --git a/docs/api-reference/v1.5/documents/_generated_execaction_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_execaction_v1_concept.md index f0534c5e20..e0177fe5f8 100644 --- a/docs/api-reference/v1.5/documents/_generated_execaction_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_execaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ExecAction ExecAction describes a "run in container" action. +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_execaction_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_execaction_v1_definition.md index c1252f3e2d..135d7e0e2a 100644 --- a/docs/api-reference/v1.5/documents/_generated_execaction_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_execaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ExecAction ExecAction describes a "run in container" action. +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md new file mode 100644 index 0000000000..cd6f9af1a6 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md @@ -0,0 +1,34 @@ + + +----------- +# FCVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FCVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +lun
*integer* | Required: FC target lun number +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +targetWWNs
*string array* | Required: FC target worldwide names (WWNs) + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md new file mode 100644 index 0000000000..8a82f89ba3 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md @@ -0,0 +1,20 @@ +## FCVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FCVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +lun
*integer* | Required: FC target lun number +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +targetWWNs
*string array* | Required: FC target worldwide names (WWNs) + diff --git a/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md new file mode 100644 index 0000000000..604820a53d --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# FlexVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlexVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +driver
*string* | Driver is the name of the driver to use for this volume. +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. +options
*object* | Optional: Extra command options if any. +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | 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. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md new file mode 100644 index 0000000000..89becb095a --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## FlexVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlexVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +driver
*string* | Driver is the name of the driver to use for this volume. +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. +options
*object* | Optional: Extra command options if any. +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | 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. + diff --git a/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md new file mode 100644 index 0000000000..d686fad3f0 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# FlockerVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlockerVolumeSource + + + + + + + +Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +datasetName
*string* | Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated +datasetUUID
*string* | UUID of the dataset. This is unique identifier of a Flocker dataset + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md new file mode 100644 index 0000000000..aaccc59415 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## FlockerVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlockerVolumeSource + + + +Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +datasetName
*string* | Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated +datasetUUID
*string* | UUID of the dataset. This is unique identifier of a Flocker dataset + diff --git a/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..c79a6a8656 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# GCEPersistentDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GCEPersistentDiskVolumeSource + + + + + + + +Represents a Persistent Disk resource in Google Compute Engine. + +A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +pdName
*string* | Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..1ab931a590 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## GCEPersistentDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GCEPersistentDiskVolumeSource + + + +Represents a Persistent Disk resource in Google Compute Engine. + +A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +pdName
*string* | Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + diff --git a/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md new file mode 100644 index 0000000000..d7223cd468 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# GitRepoVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GitRepoVolumeSource + + + + + + + +Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + + + +Field | Description +------------ | ----------- +directory
*string* | Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. +repository
*string* | Repository URL +revision
*string* | Commit hash for the specified revision. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md new file mode 100644 index 0000000000..9a23f42f22 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## GitRepoVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GitRepoVolumeSource + + + +Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + + + +Field | Description +------------ | ----------- +directory
*string* | Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. +repository
*string* | Repository URL +revision
*string* | Commit hash for the specified revision. + diff --git a/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..ae30b3b81b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# GlusterfsVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GlusterfsVolumeSource + + + + + + + +Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +endpoints
*string* | EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +path
*string* | Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +readOnly
*boolean* | ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..718f3f399b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## GlusterfsVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GlusterfsVolumeSource + + + +Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +endpoints
*string* | EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +path
*string* | Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +readOnly
*boolean* | ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md index fcd03f5264..8b3d4b5e03 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md @@ -22,6 +22,8 @@ Appears In HorizontalPodAutoscalerList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1)* | current information about the autoscaler. @@ -58,7 +60,9 @@ observedGeneration
*integer* | most recent generation observed by this a Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. @@ -114,10 +118,15 @@ create a HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1)* | @@ -176,10 +185,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1)* | @@ -238,10 +252,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -300,16 +319,21 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -363,18 +387,19 @@ delete collection of HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -434,15 +459,16 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -496,18 +522,19 @@ list or watch objects of kind HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -556,7 +583,8 @@ list or watch objects of kind HorizontalPodAutoscaler `GET /apis/autoscaling/v1/horizontalpodautoscalers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -620,10 +648,15 @@ watch changes to an object of kind HorizontalPodAutoscaler Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -678,7 +711,8 @@ watch individual changes to a list of HorizontalPodAutoscaler `GET /apis/autoscaling/v1/watch/horizontalpodautoscalers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md index 28ffd75e8b..995965cac7 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md @@ -13,6 +13,8 @@ Appears In
HorizontalPodAutoscalerLis Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1)* | current information about the autoscaler. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md index 2b894a745f..e137c2eeb2 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In
HorizontalPodAutoscale Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1beta1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1beta1)* | current information about the autoscaler. @@ -58,7 +60,9 @@ observedGeneration
*integer* | most recent generation observed by this a Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. @@ -114,10 +118,15 @@ create a HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | @@ -176,10 +185,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | @@ -238,10 +252,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -300,16 +319,21 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -363,18 +387,19 @@ delete collection of HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -434,15 +459,16 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -496,18 +522,19 @@ list or watch objects of kind HorizontalPodAutoscaler Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -556,7 +583,8 @@ list or watch objects of kind HorizontalPodAutoscaler `GET /apis/extensions/v1beta1/horizontalpodautoscalers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -620,71 +648,15 @@ watch changes to an object of kind HorizontalPodAutoscaler Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of HorizontalPodAutoscaler - -### HTTP Request - -`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -739,7 +711,8 @@ watch individual changes to a list of HorizontalPodAutoscaler `GET /apis/extensions/v1beta1/watch/horizontalpodautoscalers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -759,190 +732,4 @@ Code | Description -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified HorizontalPodAutoscaler - -### HTTP Request - -`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the HorizontalPodAutoscaler -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified HorizontalPodAutoscaler - -### HTTP Request - -`GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the HorizontalPodAutoscaler -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified HorizontalPodAutoscaler - -### HTTP Request - -`PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the HorizontalPodAutoscaler -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md index de4501b556..f8267a7f84 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In
HorizontalPodAutoscal Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1beta1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1beta1)* | current information about the autoscaler. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md index eab56824d7..57a2e7a8d7 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md @@ -21,7 +21,9 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. @@ -75,11 +77,16 @@ watch individual changes to a list of HorizontalPodAutoscaler ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md index 69887adf36..25aacbfa4a 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md @@ -12,6 +12,8 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md index 41af694354..d4e814b7e3 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | HorizontalPodAutoscalerList +Extensions | v1beta1 | HorizontalPodAutoscalerList @@ -21,11 +21,84 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of HorizontalPodAutoscaler + +### HTTP Request + +`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md index 0ed9e6031b..22bc87b675 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | HorizontalPodAutoscalerList +Extensions | v1beta1 | HorizontalPodAutoscalerList
@@ -12,6 +12,8 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md index 57376993a3..b7eefd96eb 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md @@ -83,10 +83,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1)* | @@ -145,10 +150,15 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -212,6 +222,11 @@ Parameter | Description ------------ | ----------- name | name of the HorizontalPodAutoscaler namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md index e239517552..35f37d54b5 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | HorizontalPodAutoscalerStatus +Extensions | v1beta1 | HorizontalPodAutoscalerStatus @@ -32,4 +32,210 @@ observedGeneration
*integer* | most recent generation observed by this a +## Write Operations + +See supported operations below... + +## Replace + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified HorizontalPodAutoscaler + +### HTTP Request + +`PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the HorizontalPodAutoscaler +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK + + +## Patch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified HorizontalPodAutoscaler + +### HTTP Request + +`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the HorizontalPodAutoscaler +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK + + + +## Read Operations + +See supported operations below... + +## Read + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified HorizontalPodAutoscaler + +### HTTP Request + +`GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the HorizontalPodAutoscaler +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md index f650532bd5..4a4c8aeda0 100644 --- a/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | HorizontalPodAutoscalerStatus +Extensions | v1beta1 | HorizontalPodAutoscalerStatus diff --git a/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md new file mode 100644 index 0000000000..03edbc950b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# HostPathVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | HostPathVolumeSource + + + + + + + +Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md new file mode 100644 index 0000000000..9e57efa973 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md @@ -0,0 +1,17 @@ +## HostPathVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | HostPathVolumeSource + + + +Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath + diff --git a/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md index 0d12f7a5de..fa5307dd3e 100644 --- a/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | HTTPGetAction HTTPGetAction describes an action based on HTTP Get requests. +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md index 62fc070768..201a7a1d86 100644 --- a/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | HTTPGetAction HTTPGetAction describes an action based on HTTP Get requests. +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md new file mode 100644 index 0000000000..6a2513881c --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# HTTPIngressPath v1beta1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressPath + + + + + + + +HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. + + + +Field | Description +------------ | ----------- +backend
*[IngressBackend](#ingressbackend-v1beta1)* | Backend defines the referenced service endpoint to which the traffic will be forwarded to. +path
*string* | Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md new file mode 100644 index 0000000000..0c7cd2c177 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md @@ -0,0 +1,18 @@ +## HTTPIngressPath v1beta1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressPath + + + +HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. + + + +Field | Description +------------ | ----------- +backend
*[IngressBackend](#ingressbackend-v1beta1)* | Backend defines the referenced service endpoint to which the traffic will be forwarded to. +path
*string* | Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + diff --git a/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md new file mode 100644 index 0000000000..3e01adf4a4 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# HTTPIngressRuleValue v1beta1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressRuleValue + + + + + + + +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 '#'. + + + +Field | Description +------------ | ----------- +paths
*[HTTPIngressPath](#httpingresspath-v1beta1) array* | A collection of paths that map requests to backends. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md new file mode 100644 index 0000000000..534492f88d --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md @@ -0,0 +1,17 @@ +## HTTPIngressRuleValue v1beta1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressRuleValue + + + +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 '#'. + + + +Field | Description +------------ | ----------- +paths
*[HTTPIngressPath](#httpingresspath-v1beta1) array* | A collection of paths that map requests to backends. + diff --git a/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md index 1fbb682aea..e80aada5ec 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In IngressList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[IngressSpec](#ingressspec-v1beta1)* | Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[IngressStatus](#ingressstatus-v1beta1)* | Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -53,7 +55,9 @@ loadBalancer
*[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -109,10 +113,15 @@ create an Ingress Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Ingress](#ingress-v1beta1)* | @@ -171,10 +180,15 @@ Parameter | Description ------------ | ----------- name | name of the Ingress namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Ingress](#ingress-v1beta1)* | @@ -233,10 +247,15 @@ Parameter | Description ------------ | ----------- name | name of the Ingress namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -295,16 +314,21 @@ Parameter | Description ------------ | ----------- name | name of the Ingress namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -358,18 +382,19 @@ delete collection of Ingress Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -429,15 +454,16 @@ Parameter | Description ------------ | ----------- name | name of the Ingress namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -491,18 +517,19 @@ list or watch objects of kind Ingress Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -551,7 +578,8 @@ list or watch objects of kind Ingress `GET /apis/extensions/v1beta1/ingresses` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -615,71 +643,15 @@ watch changes to an object of kind Ingress Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Ingress namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Ingress - -### HTTP Request - -`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -734,7 +706,8 @@ watch individual changes to a list of Ingress `GET /apis/extensions/v1beta1/watch/ingresses` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -754,190 +727,4 @@ Code | Description -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified Ingress - -### HTTP Request - -`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Ingress -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Ingress](#ingress-v1beta1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified Ingress - -### HTTP Request - -`GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Ingress -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[Ingress](#ingress-v1beta1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified Ingress - -### HTTP Request - -`PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Ingress -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Ingress](#ingress-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Ingress](#ingress-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md index 59784a41bd..a272aebd70 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In IngressList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[IngressSpec](#ingressspec-v1beta1)* | Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[IngressStatus](#ingressstatus-v1beta1)* | Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md index e189eb8c45..a4ba6ae6a6 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md @@ -18,7 +18,7 @@ Core | v1beta1 | IngressBackend IngressBackend describes all endpoints for a given service and port. +Appears In HTTPIngressPath IngressSpec Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md index ba53262708..847e7ac0fa 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md @@ -9,7 +9,7 @@ Core | v1beta1 | IngressBackend IngressBackend describes all endpoints for a given service and port. +Appears In HTTPIngressPath IngressSpec Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md index 299114a699..56532ab21b 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | IngressList +Extensions | v1beta1 | IngressList @@ -21,11 +21,84 @@ IngressList is a collection of Ingress. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Ingress + +### HTTP Request + +`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md index b2f5d47f25..14d16d0501 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | IngressList +Extensions | v1beta1 | IngressList @@ -12,6 +12,8 @@ IngressList is a collection of Ingress. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md index 5f5aecc1ea..c9124eccb8 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md @@ -23,6 +23,7 @@ Appears In IngressSpec Field | Description ------------ | ----------- host
*string* | 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. +http
*[HTTPIngressRuleValue](#httpingressrulevalue-v1beta1)* | diff --git a/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md index 392ee9214b..87106d629a 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md @@ -14,4 +14,5 @@ Appears In IngressSpec Field | Description ------------ | ----------- host
*string* | 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. +http
*[HTTPIngressRuleValue](#httpingressrulevalue-v1beta1)* | diff --git a/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md index 72ed1a6634..2133add63d 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | IngressStatus +Extensions | v1beta1 | IngressStatus @@ -28,4 +28,210 @@ loadBalancer
*[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc +## Write Operations + +See supported operations below... + +## Replace + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified Ingress + +### HTTP Request + +`PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Ingress +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Ingress](#ingress-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Ingress](#ingress-v1beta1)* | OK + + +## Patch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified Ingress + +### HTTP Request + +`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Ingress +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Ingress](#ingress-v1beta1)* | OK + + + +## Read Operations + +See supported operations below... + +## Read + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified Ingress + +### HTTP Request + +`GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Ingress +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[Ingress](#ingress-v1beta1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md index 86c5fc2df8..6331749cf2 100644 --- a/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | IngressStatus +Extensions | v1beta1 | IngressStatus diff --git a/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md new file mode 100644 index 0000000000..9637f04f63 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# ISCSIVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ISCSIVolumeSource + + + + + + + +Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi +iqn
*string* | Target iSCSI Qualified Name. +iscsiInterface
*string* | Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. +lun
*integer* | iSCSI target lun number. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. +targetPortal
*string* | iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md new file mode 100644 index 0000000000..446a306bcf --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## ISCSIVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ISCSIVolumeSource + + + +Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi +iqn
*string* | Target iSCSI Qualified Name. +iscsiInterface
*string* | Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. +lun
*integer* | iSCSI target lun number. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. +targetPortal
*string* | iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + diff --git a/docs/api-reference/v1.5/documents/_generated_job_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_job_v1_concept.md index 904a02b1de..eb61166d10 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v1_concept.md @@ -70,6 +70,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -109,7 +111,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -247,10 +251,15 @@ create a Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v1)* | @@ -309,10 +318,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v1)* | @@ -371,10 +385,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -444,16 +463,21 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -507,18 +531,19 @@ delete collection of Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -689,15 +714,16 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -878,18 +904,19 @@ list or watch objects of kind Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -938,7 +965,8 @@ list or watch objects of kind Job `GET /apis/batch/v1/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1123,10 +1151,81 @@ watch changes to an object of kind Job Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Job namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Job + +### HTTP Request + +`GET /apis/batch/v1/watch/namespaces/{namespace}/jobs` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1181,7 +1280,8 @@ watch individual changes to a list of Job `GET /apis/batch/v1/watch/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1201,190 +1301,4 @@ Code | Description -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified Job - -### HTTP Request - -`PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified Job - -### HTTP Request - -`GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified Job - -### HTTP Request - -`PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Job](#job-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_job_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_job_v1_definition.md index 10e30d7df9..bb80d472d8 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_job_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_job_v1beta1_concept.md index 6a73521123..bb0fe87e18 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1beta1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1beta1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -61,7 +63,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -199,10 +203,15 @@ create a Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v1beta1)* | @@ -261,10 +270,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v1beta1)* | @@ -323,10 +337,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -396,16 +415,21 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -459,18 +483,19 @@ delete collection of Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -641,15 +666,16 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -830,18 +856,19 @@ list or watch objects of kind Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -890,7 +917,8 @@ list or watch objects of kind Job `GET /apis/extensions/v1beta1/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1075,71 +1103,15 @@ watch changes to an object of kind Job Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Job - -### HTTP Request - -`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1194,7 +1166,8 @@ watch individual changes to a list of Job `GET /apis/extensions/v1beta1/watch/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1214,190 +1187,4 @@ Code | Description -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified Job - -### HTTP Request - -`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1beta1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified Job - -### HTTP Request - -`GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1beta1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified Job - -### HTTP Request - -`PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the Job -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Job](#job-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[Job](#job-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_job_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_job_v1beta1_definition.md index 28155bfe4c..cb541a5f4f 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1beta1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1beta1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_concept.md index 8f4d2fea8e..e07794dfe1 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_concept.md @@ -22,6 +22,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -61,7 +63,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -199,10 +203,15 @@ create a Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v2alpha1)* | @@ -261,10 +270,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v2alpha1)* | @@ -323,10 +337,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -396,16 +415,21 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -459,18 +483,19 @@ delete collection of Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -641,15 +666,16 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -830,18 +856,19 @@ list or watch objects of kind Job Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -890,7 +917,8 @@ list or watch objects of kind Job `GET /apis/batch/v2alpha1/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1075,10 +1103,15 @@ watch changes to an object of kind Job Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Job namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1133,7 +1166,8 @@ watch individual changes to a list of Job `GET /apis/batch/v2alpha1/watch/jobs` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_definition.md index e18df3ce0d..ea564c9d9a 100644 --- a/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_job_v2alpha1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_joblist_v1_concept.md index 27e3d382e5..49d7ff396f 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v1 | JobList +Core | v1 | JobList @@ -21,77 +21,13 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Job - -### HTTP Request - -`GET /apis/batch/v1/watch/namespaces/{namespace}/jobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_joblist_v1_definition.md index 1c4bff3079..e2eab3a6f5 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Batch | v1 | JobList +Core | v1 | JobList @@ -12,6 +12,8 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md index 14466b13cd..1529455029 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | JobList +Extensions | v1beta1 | JobList @@ -21,11 +21,84 @@ JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is depre Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Job + +### HTTP Request + +`GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md index caae13ec38..de1cf5d79d 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | JobList +Extensions | v1beta1 | JobList @@ -12,6 +12,8 @@ JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is depre Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md index 4c8f385167..de8d7079e6 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md @@ -21,7 +21,9 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -75,11 +77,16 @@ watch individual changes to a list of Job ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md index 61a8f32c20..99bf7eec27 100644 --- a/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md @@ -12,6 +12,8 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_concept.md index b1c7bb39f6..8daf92ed2d 100644 --- a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1 | JobStatus +Batch | v1 | JobStatus @@ -33,4 +33,210 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas +## Write Operations + +See supported operations below... + +## Replace + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified Job + +### HTTP Request + +`PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Job](#job-v1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1)* | OK + + +## Patch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified Job + +### HTTP Request + +`PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1)* | OK + + + +## Read Operations + +See supported operations below... + +## Read + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified Job + +### HTTP Request + +`GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_definition.md index d079a8d6e0..acbed90c9e 100644 --- a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1 | JobStatus +Batch | v1 | JobStatus diff --git a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md index 6d31facbaa..132897c072 100644 --- a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | JobStatus +Extensions | v1beta1 | JobStatus @@ -33,4 +33,210 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas +## Write Operations + +See supported operations below... + +## Replace + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified Job + +### HTTP Request + +`PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Job](#job-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1beta1)* | OK + + +## Patch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified Job + +### HTTP Request + +`PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1beta1)* | OK + + + +## Read Operations + +See supported operations below... + +## Read + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified Job + +### HTTP Request + +`GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the Job +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[Job](#job-v1beta1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md index 70a705e425..bb566c813f 100644 --- a/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | JobStatus +Extensions | v1beta1 | JobStatus diff --git a/docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md index 5c979bc821..abf3287d2a 100644 --- a/docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md @@ -84,10 +84,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Job](#job-v2alpha1)* | @@ -146,10 +151,15 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -213,6 +223,11 @@ Parameter | Description ------------ | ----------- name | name of the Job namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_keytopath_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_keytopath_v1_concept.md new file mode 100644 index 0000000000..54d1cc0953 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_keytopath_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# KeyToPath v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | KeyToPath + + + + + + + +Maps a string key to a path within a volume. + + + +Field | Description +------------ | ----------- +key
*string* | The key to project. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_keytopath_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_keytopath_v1_definition.md new file mode 100644 index 0000000000..615f9131f2 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_keytopath_v1_definition.md @@ -0,0 +1,19 @@ +## KeyToPath v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | KeyToPath + + + +Maps a string key to a path within a volume. + + + +Field | Description +------------ | ----------- +key
*string* | The key to project. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + diff --git a/docs/api-reference/v1.5/documents/_generated_limitrange_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_limitrange_v1_concept.md index 01e08cd649..643d55d332 100644 --- a/docs/api-reference/v1.5/documents/_generated_limitrange_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_limitrange_v1_concept.md @@ -22,6 +22,8 @@ Appears In LimitRangeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[LimitRangeSpec](#limitrangespec-v1)* | Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -41,7 +43,9 @@ limits
*[LimitRangeItem](#limitrangeitem-v1) array* | Limits is the list Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -97,10 +101,15 @@ create a LimitRange Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[LimitRange](#limitrange-v1)* | @@ -159,10 +168,15 @@ Parameter | Description ------------ | ----------- name | name of the LimitRange namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[LimitRange](#limitrange-v1)* | @@ -221,10 +235,15 @@ Parameter | Description ------------ | ----------- name | name of the LimitRange namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -283,16 +302,21 @@ Parameter | Description ------------ | ----------- name | name of the LimitRange namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -346,18 +370,19 @@ delete collection of LimitRange Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -417,15 +442,16 @@ Parameter | Description ------------ | ----------- name | name of the LimitRange namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -479,18 +505,19 @@ list or watch objects of kind LimitRange Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -539,7 +566,8 @@ list or watch objects of kind LimitRange `GET /api/v1/limitranges` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -603,71 +631,15 @@ watch changes to an object of kind LimitRange Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the LimitRange namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of LimitRange - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/limitranges` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -722,7 +694,8 @@ watch individual changes to a list of LimitRange `GET /api/v1/watch/limitranges` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_limitrange_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_limitrange_v1_definition.md index 53e7ca483c..5f2c44911d 100644 --- a/docs/api-reference/v1.5/documents/_generated_limitrange_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_limitrange_v1_definition.md @@ -13,6 +13,8 @@ Appears In LimitRangeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[LimitRangeSpec](#limitrangespec-v1)* | Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md index 9e66bd28bb..76ecfdeee4 100644 --- a/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md @@ -21,11 +21,84 @@ LimitRangeList is a list of LimitRange items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of LimitRange + +### HTTP Request + +`GET /api/v1/watch/namespaces/{namespace}/limitranges` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md index f2246e916c..f482b33ac8 100644 --- a/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md @@ -12,6 +12,8 @@ LimitRangeList is a list of LimitRange items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md index 4ad41b1c2a..d8d3fcadfc 100644 --- a/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | LocalObjectReference LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. +Appears In CephFSVolumeSource FlexVolumeSource PodSpec RBDVolumeSource ServiceAccount Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md index dee0b8b8be..561ffc419c 100644 --- a/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | LocalObjectReference LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. +Appears In CephFSVolumeSource FlexVolumeSource PodSpec RBDVolumeSource ServiceAccount Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md index 5372c81533..1072acd1ea 100644 --- a/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ LocalSubjectAccessReview checks whether or not a user or group can perform an ac Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | 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. status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not @@ -78,10 +80,19 @@ create a LocalSubjectAccessReview Parameter | Description ------------ | ----------- -body
*[LocalSubjectAccessReview](#localsubjectaccessreview-v1beta1)* | namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[LocalSubjectAccessReview](#localsubjectaccessreview-v1beta1)* | ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md index 725242b868..e61325f998 100644 --- a/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ LocalSubjectAccessReview checks whether or not a user or group can perform an ac Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | 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. status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/api-reference/v1.5/documents/_generated_namespace_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_namespace_v1_concept.md index 4121d6104b..33fcf6de46 100644 --- a/docs/api-reference/v1.5/documents/_generated_namespace_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_namespace_v1_concept.md @@ -22,6 +22,8 @@ Appears In NamespaceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NamespaceSpec](#namespacespec-v1)* | Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NamespaceStatus](#namespacestatus-v1)* | Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -51,7 +53,9 @@ phase
*string* | Phase is the current lifecycle phase of the namespace. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -102,13 +106,14 @@ create a Namespace `POST /api/v1/namespaces` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -167,10 +172,15 @@ replace the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Namespace](#namespace-v1)* | @@ -228,10 +238,15 @@ partially update the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -289,16 +304,21 @@ delete a Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -347,22 +367,19 @@ delete collection of Namespace `DELETE /api/v1/namespaces` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -421,15 +438,16 @@ read the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -478,22 +496,19 @@ list or watch objects of kind Namespace `GET /api/v1/namespaces` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -544,11 +559,16 @@ watch changes to an object of kind Namespace ### Path Parameters +Parameter | Description +------------ | ----------- +name | name of the Namespace + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -name | name of the Namespace pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_namespace_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_namespace_v1_definition.md index 5c3d3a38ea..86146344cf 100644 --- a/docs/api-reference/v1.5/documents/_generated_namespace_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_namespace_v1_definition.md @@ -13,6 +13,8 @@ Appears In NamespaceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NamespaceSpec](#namespacespec-v1)* | Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NamespaceStatus](#namespacestatus-v1)* | Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_concept.md index db1656a831..1b17ac6cdc 100644 --- a/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_concept.md @@ -21,7 +21,9 @@ NamespaceList is a list of Namespaces. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -73,7 +75,8 @@ watch individual changes to a list of Namespace `GET /api/v1/watch/namespaces` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_definition.md index 6fc4a2890a..ca5cdccd19 100644 --- a/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_namespacelist_v1_definition.md @@ -12,6 +12,8 @@ NamespaceList is a list of Namespaces. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md index a28e23635b..ac4944cd59 100644 --- a/docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md @@ -78,10 +78,15 @@ replace status of the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Namespace](#namespace-v1)* | @@ -139,10 +144,15 @@ partially update status of the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -205,6 +215,11 @@ read status of the specified Namespace Parameter | Description ------------ | ----------- name | name of the Namespace + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md index a77aa0e978..2c53ac8473 100644 --- a/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In NetworkPolicyList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NetworkPolicySpec](#networkpolicyspec-v1beta1)* | Specification of the desired behavior for this NetworkPolicy. @@ -42,7 +44,9 @@ podSelector
*[LabelSelector](#labelselector-unversioned)* | Selects the Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -98,10 +102,15 @@ create a NetworkPolicy Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[NetworkPolicy](#networkpolicy-v1beta1)* | @@ -160,10 +169,15 @@ Parameter | Description ------------ | ----------- name | name of the NetworkPolicy namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[NetworkPolicy](#networkpolicy-v1beta1)* | @@ -222,10 +236,15 @@ Parameter | Description ------------ | ----------- name | name of the NetworkPolicy namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -284,16 +303,21 @@ Parameter | Description ------------ | ----------- name | name of the NetworkPolicy namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -347,18 +371,19 @@ delete collection of NetworkPolicy Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -418,15 +443,16 @@ Parameter | Description ------------ | ----------- name | name of the NetworkPolicy namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -480,18 +506,19 @@ list or watch objects of kind NetworkPolicy Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -540,7 +567,8 @@ list or watch objects of kind NetworkPolicy `GET /apis/extensions/v1beta1/networkpolicies` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -604,10 +632,15 @@ watch changes to an object of kind NetworkPolicy Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the NetworkPolicy namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -662,7 +695,8 @@ watch individual changes to a list of NetworkPolicy `GET /apis/extensions/v1beta1/watch/networkpolicies` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md index 34c2cfd76e..5710a158dc 100644 --- a/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In NetworkPolicyList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NetworkPolicySpec](#networkpolicyspec-v1beta1)* | Specification of the desired behavior for this NetworkPolicy. diff --git a/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md index 4a144da98b..333ca0fa25 100644 --- a/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md @@ -21,7 +21,9 @@ Network Policy List is a list of NetworkPolicy objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -75,11 +77,16 @@ watch individual changes to a list of NetworkPolicy ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md index 5563e67b52..3d743e4aac 100644 --- a/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md @@ -12,6 +12,8 @@ Network Policy List is a list of NetworkPolicy objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..a419519c19 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# NFSVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | NFSVolumeSource + + + + + + + +Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +readOnly
*boolean* | ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +server
*string* | Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..23c2266305 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## NFSVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | NFSVolumeSource + + + +Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +readOnly
*boolean* | ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +server
*string* | Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + diff --git a/docs/api-reference/v1.5/documents/_generated_node_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_node_v1_concept.md index c2141c61ec..790d0e9dc9 100644 --- a/docs/api-reference/v1.5/documents/_generated_node_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_node_v1_concept.md @@ -22,6 +22,8 @@ Appears In NodeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NodeSpec](#nodespec-v1)* | Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NodeStatus](#nodestatus-v1)* | Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -63,7 +65,9 @@ volumesInUse
*string array* | List of attachable volumes in use (mounted Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -114,13 +118,14 @@ create a Node `POST /api/v1/nodes` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -179,10 +184,15 @@ replace the specified Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Node](#node-v1)* | @@ -240,10 +250,15 @@ partially update the specified Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -301,16 +316,21 @@ delete a Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -359,22 +379,19 @@ delete collection of Node `DELETE /api/v1/nodes` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -433,15 +450,16 @@ read the specified Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -490,22 +508,19 @@ list or watch objects of kind Node `GET /api/v1/nodes` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -558,64 +573,9 @@ watch changes to an object of kind Node Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Node -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Node - -### HTTP Request - -`GET /api/v1/watch/nodes` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- @@ -685,6 +645,11 @@ connect POST requests to proxy of Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -742,6 +707,11 @@ Parameter | Description ------------ | ----------- name | name of the Node path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -800,6 +770,7 @@ Parameter | Description name | name of the Node + ### Response Code | Description @@ -856,6 +827,7 @@ name | name of the Node path | path to the resource + ### Response Code | Description @@ -909,6 +881,11 @@ connect DELETE requests to proxy of Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -966,6 +943,11 @@ Parameter | Description ------------ | ----------- name | name of the Node path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1024,6 +1006,7 @@ Parameter | Description name | name of the Node + ### Response Code | Description @@ -1080,6 +1063,7 @@ name | name of the Node path | path to the resource + ### Response Code | Description @@ -1133,6 +1117,11 @@ connect GET requests to proxy of Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1190,6 +1179,11 @@ Parameter | Description ------------ | ----------- name | name of the Node path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1248,6 +1242,7 @@ Parameter | Description name | name of the Node + ### Response Code | Description @@ -1304,6 +1299,7 @@ name | name of the Node path | path to the resource + ### Response Code | Description @@ -1357,6 +1353,11 @@ connect HEAD requests to proxy of Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1414,6 +1415,11 @@ Parameter | Description ------------ | ----------- name | name of the Node path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1470,6 +1476,11 @@ connect PUT requests to proxy of Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1527,6 +1538,11 @@ Parameter | Description ------------ | ----------- name | name of the Node path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to node. @@ -1585,6 +1601,7 @@ Parameter | Description name | name of the Node + ### Response Code | Description @@ -1641,6 +1658,7 @@ name | name of the Node path | path to the resource + ### Response Code | Description diff --git a/docs/api-reference/v1.5/documents/_generated_node_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_node_v1_definition.md index 7875b6524c..7350491116 100644 --- a/docs/api-reference/v1.5/documents/_generated_node_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_node_v1_definition.md @@ -13,6 +13,8 @@ Appears In NodeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NodeSpec](#nodespec-v1)* | Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NodeStatus](#nodestatus-v1)* | Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_nodelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_nodelist_v1_concept.md index 29e6b7468b..b32ea57768 100644 --- a/docs/api-reference/v1.5/documents/_generated_nodelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_nodelist_v1_concept.md @@ -21,11 +21,79 @@ NodeList is the whole list of all Nodes which have been registered with master. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Node + +### HTTP Request + +`GET /api/v1/watch/nodes` + + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_nodelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_nodelist_v1_definition.md index 498c387346..8a5ae1fec2 100644 --- a/docs/api-reference/v1.5/documents/_generated_nodelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_nodelist_v1_definition.md @@ -12,6 +12,8 @@ NodeList is the whole list of all Nodes which have been registered with master. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_nodestatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_nodestatus_v1_concept.md index 34438097b3..918d297ee4 100644 --- a/docs/api-reference/v1.5/documents/_generated_nodestatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_nodestatus_v1_concept.md @@ -87,10 +87,15 @@ replace status of the specified Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Node](#node-v1)* | @@ -148,10 +153,15 @@ partially update status of the specified Node Parameter | Description ------------ | ----------- name | name of the Node -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -214,6 +224,11 @@ read status of the specified Node Parameter | Description ------------ | ----------- name | name of the Node + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md index 5835566e59..2a8743365c 100644 --- a/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ObjectFieldSelector ObjectFieldSelector selects an APIVersioned field of an object. +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md index 5596a3bc5c..fe41b9f8cf 100644 --- a/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ObjectFieldSelector ObjectFieldSelector selects an APIVersioned field of an object. +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md index 5778a0af10..44674248ee 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md @@ -22,6 +22,8 @@ Appears In PersistentVolumeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeSpec](#persistentvolumespec-v1)* | Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes status
*[PersistentVolumeStatus](#persistentvolumestatus-v1)* | Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes @@ -35,9 +37,26 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine ### PersistentVolumeStatus v1 @@ -56,7 +75,9 @@ reason
*string* | Reason is a brief CamelCase string that describes any Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -107,13 +128,14 @@ create a PersistentVolume `POST /api/v1/persistentvolumes` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -172,10 +194,15 @@ replace the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PersistentVolume](#persistentvolume-v1)* | @@ -233,10 +260,15 @@ partially update the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -294,16 +326,21 @@ delete a PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -352,22 +389,19 @@ delete collection of PersistentVolume `DELETE /api/v1/persistentvolumes` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -426,15 +460,16 @@ read the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -483,22 +518,19 @@ list or watch objects of kind PersistentVolume `GET /api/v1/persistentvolumes` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -549,11 +581,16 @@ watch changes to an object of kind PersistentVolume ### Path Parameters +Parameter | Description +------------ | ----------- +name | name of the PersistentVolume + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -name | name of the PersistentVolume pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -608,7 +645,8 @@ watch individual changes to a list of PersistentVolume `GET /api/v1/watch/persistentvolumes` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -678,10 +716,15 @@ partially update status of the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -739,6 +782,11 @@ read status of the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -795,10 +843,15 @@ replace status of the specified PersistentVolume Parameter | Description ------------ | ----------- name | name of the PersistentVolume -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PersistentVolume](#persistentvolume-v1)* | diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md index c9818773cd..81b1e13b13 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md @@ -13,6 +13,8 @@ Appears In PersistentVolumeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeSpec](#persistentvolumespec-v1)* | Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes status
*[PersistentVolumeStatus](#persistentvolumestatus-v1)* | Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md index b103b4e89c..2e86c6e88c 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md @@ -22,6 +22,8 @@ Appears In PersistentVolumeClaimList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeClaimSpec](#persistentvolumeclaimspec-v1)* | Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims status
*[PersistentVolumeClaimStatus](#persistentvolumeclaimstatus-v1)* | Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims @@ -56,7 +58,9 @@ phase
*string* | Phase represents the current phase of PersistentVolumeC Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -112,10 +116,15 @@ create a PersistentVolumeClaim Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PersistentVolumeClaim](#persistentvolumeclaim-v1)* | @@ -174,10 +183,15 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PersistentVolumeClaim](#persistentvolumeclaim-v1)* | @@ -236,10 +250,15 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -298,16 +317,21 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -361,18 +385,19 @@ delete collection of PersistentVolumeClaim Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -432,15 +457,16 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -494,18 +520,19 @@ list or watch objects of kind PersistentVolumeClaim Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -554,7 +581,8 @@ list or watch objects of kind PersistentVolumeClaim `GET /api/v1/persistentvolumeclaims` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -618,10 +646,15 @@ watch changes to an object of kind PersistentVolumeClaim Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -676,7 +709,8 @@ watch individual changes to a list of PersistentVolumeClaim `GET /api/v1/watch/persistentvolumeclaims` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -747,10 +781,15 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -809,6 +848,11 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -866,10 +910,15 @@ Parameter | Description ------------ | ----------- name | name of the PersistentVolumeClaim namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PersistentVolumeClaim](#persistentvolumeclaim-v1)* | diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md index 2ceb13be3f..ed24250a7d 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md @@ -13,6 +13,8 @@ Appears In PersistentVolumeClaimList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeClaimSpec](#persistentvolumeclaimspec-v1)* | Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims status
*[PersistentVolumeClaimStatus](#persistentvolumeclaimstatus-v1)* | Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md index cca787d89f..7fdde37357 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md @@ -21,7 +21,9 @@ PersistentVolumeClaimList is a list of PersistentVolumeClaim items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -75,11 +77,16 @@ watch individual changes to a list of PersistentVolumeClaim ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md index c15333e8ce..ba451dcd49 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md @@ -12,6 +12,8 @@ PersistentVolumeClaimList is a list of PersistentVolumeClaim items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md new file mode 100644 index 0000000000..42afa5695b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# PersistentVolumeClaimVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PersistentVolumeClaimVolumeSource + + + + + + + +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). + + + +Field | Description +------------ | ----------- +claimName
*string* | ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +readOnly
*boolean* | Will force the ReadOnly setting in VolumeMounts. Default false. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md new file mode 100644 index 0000000000..2dab66437f --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## PersistentVolumeClaimVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PersistentVolumeClaimVolumeSource + + + +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). + + + +Field | Description +------------ | ----------- +claimName
*string* | ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +readOnly
*boolean* | Will force the ReadOnly setting in VolumeMounts. Default false. + diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md index 2699818efb..5cfa5408e1 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md @@ -21,7 +21,9 @@ PersistentVolumeList is a list of PersistentVolume items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md index 86133472c9..6fbcb0485f 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md @@ -12,6 +12,8 @@ PersistentVolumeList is a list of PersistentVolume items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md index 5fa83806ee..db953210a9 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md @@ -23,9 +23,26 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md index f84aade0ef..3f2de1dcda 100644 --- a/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md @@ -14,7 +14,24 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..4559d83f7b --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# PhotonPersistentDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PhotonPersistentDiskVolumeSource + + + + + + + +Represents a Photon Controller persistent disk resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +pdID
*string* | ID that identifies Photon Controller persistent disk + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..08e975b605 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## PhotonPersistentDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PhotonPersistentDiskVolumeSource + + + +Represents a Photon Controller persistent disk resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +pdID
*string* | ID that identifies Photon Controller persistent disk + diff --git a/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md index cccf6779bf..c2ee5b3e4c 100644 --- a/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md @@ -54,6 +54,8 @@ Appears In PodList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[PodStatus](#podstatus-v1)* | Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -106,7 +108,9 @@ startTime
*[Time](#time-unversioned)* | RFC 3339 date and time at which Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -162,10 +166,15 @@ create a Pod Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Pod](#pod-v1)* | @@ -224,10 +233,15 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Pod](#pod-v1)* | @@ -286,10 +300,15 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -348,16 +367,21 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -411,18 +435,19 @@ delete collection of Pod Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -482,15 +507,16 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -544,18 +570,19 @@ list or watch objects of kind Pod Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -604,7 +631,8 @@ list or watch objects of kind Pod `GET /api/v1/pods` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -668,10 +696,81 @@ watch changes to an object of kind Pod Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Pod + +### HTTP Request + +`GET /api/v1/watch/namespaces/{namespace}/pods` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -726,7 +825,8 @@ watch individual changes to a list of Pod `GET /api/v1/watch/pods` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -799,6 +899,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -853,6 +954,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -911,6 +1017,11 @@ Parameter | Description name | name of the Pod namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -970,6 +1081,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1027,6 +1139,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1081,6 +1194,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1139,6 +1257,11 @@ Parameter | Description name | name of the Pod namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1198,6 +1321,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1255,6 +1379,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1311,6 +1436,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1365,6 +1491,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1423,6 +1554,11 @@ Parameter | Description name | name of the Pod namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1482,6 +1618,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1539,6 +1676,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1593,6 +1731,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1651,6 +1794,11 @@ Parameter | Description name | name of the Pod namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1708,6 +1856,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1766,6 +1919,11 @@ Parameter | Description name | name of the Pod namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the URL path to use for the current proxy request to pod. @@ -1825,6 +1983,7 @@ name | name of the Pod namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1882,6 +2041,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1937,13 +2097,18 @@ read log of the specified Pod ### Path Parameters +Parameter | Description +------------ | ----------- +name | name of the Pod +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- container | The container for which to stream logs. Defaults to only container if there is one container in the pod. follow | Follow the log stream of the pod. Defaults to false. limitBytes | If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. -name | name of the Pod -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. previous | Return previous terminated container logs. Defaults to false. sinceSeconds | A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. diff --git a/docs/api-reference/v1.5/documents/_generated_pod_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_pod_v1_definition.md index 027987ff72..17b6cd7aa8 100644 --- a/docs/api-reference/v1.5/documents/_generated_pod_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_pod_v1_definition.md @@ -13,6 +13,8 @@ Appears In PodList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[PodStatus](#podstatus-v1)* | Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md index e66933ce3f..1b9dd09b88 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In PodDisruptionBudgetList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[PodDisruptionBudgetSpec](#poddisruptionbudgetspec-v1beta1)* | Specification of the desired behavior of the PodDisruptionBudget. status
*[PodDisruptionBudgetStatus](#poddisruptionbudgetstatus-v1beta1)* | Most recently observed status of the PodDisruptionBudget. @@ -57,7 +59,9 @@ observedGeneration
*integer* | Most recent generation observed when upda Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | @@ -113,10 +117,15 @@ create a PodDisruptionBudget Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | @@ -175,10 +184,15 @@ Parameter | Description ------------ | ----------- name | name of the PodDisruptionBudget namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | @@ -237,10 +251,15 @@ Parameter | Description ------------ | ----------- name | name of the PodDisruptionBudget namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -299,16 +318,21 @@ Parameter | Description ------------ | ----------- name | name of the PodDisruptionBudget namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -362,18 +386,19 @@ delete collection of PodDisruptionBudget Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -433,15 +458,16 @@ Parameter | Description ------------ | ----------- name | name of the PodDisruptionBudget namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -495,18 +521,19 @@ list or watch objects of kind PodDisruptionBudget Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -555,7 +582,8 @@ list or watch objects of kind PodDisruptionBudget `GET /apis/policy/v1beta1/poddisruptionbudgets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -619,71 +647,15 @@ watch changes to an object of kind PodDisruptionBudget Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the PodDisruptionBudget namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of PodDisruptionBudget - -### HTTP Request - -`GET /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -738,7 +710,8 @@ watch individual changes to a list of PodDisruptionBudget `GET /apis/policy/v1beta1/watch/poddisruptionbudgets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -758,190 +731,4 @@ Code | Description -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified PodDisruptionBudget - -### HTTP Request - -`PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the PodDisruptionBudget -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified PodDisruptionBudget - -### HTTP Request - -`GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the PodDisruptionBudget -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified PodDisruptionBudget - -### HTTP Request - -`PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the PodDisruptionBudget -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md index cacd772e7c..3f9886864e 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In PodDisruptionBudgetList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[PodDisruptionBudgetSpec](#poddisruptionbudgetspec-v1beta1)* | Specification of the desired behavior of the PodDisruptionBudget. status
*[PodDisruptionBudgetStatus](#poddisruptionbudgetstatus-v1beta1)* | Most recently observed status of the PodDisruptionBudget. diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md index 8f3fb74836..ff19c757e3 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | PodDisruptionBudgetList +Policy | v1beta1 | PodDisruptionBudgetList @@ -21,11 +21,84 @@ PodDisruptionBudgetList is a collection of PodDisruptionBudgets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of PodDisruptionBudget + +### HTTP Request + +`GET /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md index ec5c11604a..a3f8a41098 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | PodDisruptionBudgetList +Policy | v1beta1 | PodDisruptionBudgetList @@ -12,6 +12,8 @@ PodDisruptionBudgetList is a collection of PodDisruptionBudgets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md index a3e11eff54..3fa6bdff7e 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | PodDisruptionBudgetStatus +Policy | v1beta1 | PodDisruptionBudgetStatus @@ -33,4 +33,210 @@ observedGeneration
*integer* | Most recent generation observed when upda +## Write Operations + +See supported operations below... + +## Replace + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified PodDisruptionBudget + +### HTTP Request + +`PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the PodDisruptionBudget +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK + + +## Patch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified PodDisruptionBudget + +### HTTP Request + +`PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the PodDisruptionBudget +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK + + + +## Read Operations + +See supported operations below... + +## Read + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified PodDisruptionBudget + +### HTTP Request + +`GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the PodDisruptionBudget +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md index 2851ecd47c..873768dfff 100644 --- a/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | PodDisruptionBudgetStatus +Policy | v1beta1 | PodDisruptionBudgetStatus diff --git a/docs/api-reference/v1.5/documents/_generated_podlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_podlist_v1_concept.md index b017463229..3a47c0152c 100644 --- a/docs/api-reference/v1.5/documents/_generated_podlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_podlist_v1_concept.md @@ -21,77 +21,13 @@ PodList is a list of Pods. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Pod - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/pods` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_podlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_podlist_v1_definition.md index 387747e46d..5545fc1b38 100644 --- a/docs/api-reference/v1.5/documents/_generated_podlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_podlist_v1_definition.md @@ -12,6 +12,8 @@ PodList is a list of Pods. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_podstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_podstatus_v1_concept.md index a84a8fcc69..8c6fc2a7c3 100644 --- a/docs/api-reference/v1.5/documents/_generated_podstatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_podstatus_v1_concept.md @@ -86,10 +86,15 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Pod](#pod-v1)* | @@ -148,10 +153,15 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -215,6 +225,11 @@ Parameter | Description ------------ | ----------- name | name of the Pod namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_concept.md index 8449d06e34..2afc92c42e 100644 --- a/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_concept.md @@ -22,6 +22,8 @@ Appears In
PodTemplateList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata template
*[PodTemplateSpec](#podtemplatespec-v1)* | Template defines the pods that will be created from this pod template. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -42,7 +44,9 @@ spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -98,10 +102,15 @@ create a PodTemplate Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PodTemplate](#podtemplate-v1)* | @@ -160,10 +169,15 @@ Parameter | Description ------------ | ----------- name | name of the PodTemplate namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[PodTemplate](#podtemplate-v1)* | @@ -222,10 +236,15 @@ Parameter | Description ------------ | ----------- name | name of the PodTemplate namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -284,16 +303,21 @@ Parameter | Description ------------ | ----------- name | name of the PodTemplate namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -347,18 +371,19 @@ delete collection of PodTemplate Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -418,15 +443,16 @@ Parameter | Description ------------ | ----------- name | name of the PodTemplate namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -480,18 +506,19 @@ list or watch objects of kind PodTemplate Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -540,7 +567,8 @@ list or watch objects of kind PodTemplate `GET /api/v1/podtemplates` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -604,10 +632,15 @@ watch changes to an object of kind PodTemplate Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the PodTemplate namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -662,7 +695,8 @@ watch individual changes to a list of PodTemplate `GET /api/v1/watch/podtemplates` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_definition.md index 55578c1283..1ae4f21f4f 100644 --- a/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_podtemplate_v1_definition.md @@ -13,6 +13,8 @@ Appears In PodTemplateList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata template
*[PodTemplateSpec](#podtemplatespec-v1)* | Template defines the pods that will be created from this pod template. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md index 4d60bc9782..8882d62304 100644 --- a/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md @@ -21,7 +21,9 @@ PodTemplateList is a list of PodTemplates. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -75,11 +77,16 @@ watch individual changes to a list of PodTemplate ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md index e948c98fe3..58c8bacc98 100644 --- a/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md @@ -12,6 +12,8 @@ PodTemplateList is a list of PodTemplates. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_probe_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_probe_v1_concept.md index 97c6dc9b17..97b746fc89 100644 --- a/docs/api-reference/v1.5/documents/_generated_probe_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_probe_v1_concept.md @@ -22,10 +22,13 @@ Appears In Container Field | Description ------------ | ----------- +exec
*[ExecAction](#execaction-v1)* | One and only one of the following should be specified. Exec specifies the action to take. failureThreshold
*integer* | Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. +httpGet
*[HTTPGetAction](#httpgetaction-v1)* | HTTPGet specifies the http request to perform. initialDelaySeconds
*integer* | Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes periodSeconds
*integer* | How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. successThreshold
*integer* | 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. +tcpSocket
*[TCPSocketAction](#tcpsocketaction-v1)* | TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported timeoutSeconds
*integer* | Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes diff --git a/docs/api-reference/v1.5/documents/_generated_probe_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_probe_v1_definition.md index ea0f4f5e86..3a721cb685 100644 --- a/docs/api-reference/v1.5/documents/_generated_probe_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_probe_v1_definition.md @@ -13,9 +13,12 @@ Appears In Container Field | Description ------------ | ----------- +exec
*[ExecAction](#execaction-v1)* | One and only one of the following should be specified. Exec specifies the action to take. failureThreshold
*integer* | Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. +httpGet
*[HTTPGetAction](#httpgetaction-v1)* | HTTPGet specifies the http request to perform. initialDelaySeconds
*integer* | Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes periodSeconds
*integer* | How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. successThreshold
*integer* | 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. +tcpSocket
*[TCPSocketAction](#tcpsocketaction-v1)* | TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported timeoutSeconds
*integer* | Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes diff --git a/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md new file mode 100644 index 0000000000..f4d6f69efa --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# QuobyteVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | QuobyteVolumeSource + + + + + + + +Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +group
*string* | Group to map volume access to Default is no group +readOnly
*boolean* | ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. +registry
*string* | Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes +user
*string* | User to map volume access to Defaults to serivceaccount user +volume
*string* | Volume is a string that references an already created Quobyte volume by name. + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md new file mode 100644 index 0000000000..5888abc381 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## QuobyteVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | QuobyteVolumeSource + + + +Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +group
*string* | Group to map volume access to Default is no group +readOnly
*boolean* | ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. +registry
*string* | Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes +user
*string* | User to map volume access to Defaults to serivceaccount user +volume
*string* | Volume is a string that references an already created Quobyte volume by name. + diff --git a/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md new file mode 100644 index 0000000000..da4f80a349 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md @@ -0,0 +1,38 @@ + + +----------- +# RBDVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | RBDVolumeSource + + + + + + + +Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd +image
*string* | The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +keyring
*string* | Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +monitors
*string array* | A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +pool
*string* | The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +user
*string* | The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md new file mode 100644 index 0000000000..55509076eb --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md @@ -0,0 +1,24 @@ +## RBDVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | RBDVolumeSource + + + +Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd +image
*string* | The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +keyring
*string* | Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +monitors
*string array* | A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +pool
*string* | The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +user
*string* | The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + diff --git a/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md index 7accf91269..35a1b0071f 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md @@ -70,6 +70,8 @@ Appears In ReplicaSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicaSetSpec](#replicasetspec-v1beta1)* | Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicaSetStatus](#replicasetstatus-v1beta1)* | Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -107,7 +109,9 @@ replicas
*integer* | Replicas is the most recently oberved number of rep Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -163,10 +167,15 @@ create a ReplicaSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicaSet](#replicaset-v1beta1)* | @@ -225,10 +234,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicaSet](#replicaset-v1beta1)* | @@ -287,10 +301,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -349,16 +368,21 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -412,18 +436,19 @@ delete collection of ReplicaSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -483,15 +508,16 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -545,18 +571,19 @@ list or watch objects of kind ReplicaSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -605,7 +632,8 @@ list or watch objects of kind ReplicaSet `GET /apis/extensions/v1beta1/replicasets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -669,10 +697,15 @@ watch changes to an object of kind ReplicaSet Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -729,11 +762,16 @@ watch individual changes to a list of ReplicaSet ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -788,7 +826,8 @@ watch individual changes to a list of ReplicaSet `GET /apis/extensions/v1beta1/watch/replicasets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -859,6 +898,11 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -916,10 +960,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Scale](#scale-v1beta1)* | @@ -978,10 +1027,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | diff --git a/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md index bd37b4bf77..57f6ddb6e3 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In ReplicaSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicaSetSpec](#replicasetspec-v1beta1)* | Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicaSetStatus](#replicasetstatus-v1beta1)* | Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md index e37e6fe96e..dcbd8df7ad 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md @@ -21,7 +21,9 @@ ReplicaSetList is a collection of ReplicaSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md index 8a22471e45..d22b230f36 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md @@ -12,6 +12,8 @@ ReplicaSetList is a collection of ReplicaSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md index e584470eed..92e975a8d6 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md @@ -84,10 +84,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicaSet](#replicaset-v1beta1)* | @@ -146,10 +151,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -213,6 +223,11 @@ Parameter | Description ------------ | ----------- name | name of the ReplicaSet namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md index c46ec43906..0ce5e7421c 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md @@ -70,6 +70,8 @@ Appears In ReplicationControllerList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicationControllerSpec](#replicationcontrollerspec-v1)* | Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicationControllerStatus](#replicationcontrollerstatus-v1)* | Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -107,7 +109,9 @@ replicas
*integer* | Replicas is the most recently oberved number of rep Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -163,10 +167,15 @@ create a ReplicationController Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicationController](#replicationcontroller-v1)* | @@ -225,10 +234,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicationController](#replicationcontroller-v1)* | @@ -287,10 +301,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -349,16 +368,21 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -412,18 +436,19 @@ delete collection of ReplicationController Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -483,15 +508,16 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -545,18 +571,19 @@ list or watch objects of kind ReplicationController Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -605,7 +632,8 @@ list or watch objects of kind ReplicationController `GET /api/v1/replicationcontrollers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -669,10 +697,15 @@ watch changes to an object of kind ReplicationController Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -727,7 +760,8 @@ watch individual changes to a list of ReplicationController `GET /api/v1/watch/replicationcontrollers` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md index 83aeb79572..5883492c10 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md @@ -13,6 +13,8 @@ Appears In ReplicationControllerList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicationControllerSpec](#replicationcontrollerspec-v1)* | Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicationControllerStatus](#replicationcontrollerstatus-v1)* | Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md index 65af725e63..bb03feceb6 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md @@ -21,7 +21,9 @@ ReplicationControllerList is a collection of replication controllers. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -75,11 +77,16 @@ watch individual changes to a list of ReplicationController ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md index cec4edf9ff..5b62592c04 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md @@ -12,6 +12,8 @@ ReplicationControllerList is a collection of replication controllers. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md index 828096ffa8..b987da32f6 100644 --- a/docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md @@ -84,10 +84,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ReplicationController](#replicationcontroller-v1)* | @@ -146,10 +151,15 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -213,6 +223,11 @@ Parameter | Description ------------ | ----------- name | name of the ReplicationController namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. diff --git a/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md index 7bd87539dc..42dc21a36c 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ResourceFieldSelector ResourceFieldSelector represents container resources (cpu, memory) and their output format +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md index 594e03a9bf..4a11f704c8 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ResourceFieldSelector ResourceFieldSelector represents container resources (cpu, memory) and their output format +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_concept.md index cf11107101..655ebd880d 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_concept.md @@ -22,6 +22,8 @@ Appears In ResourceQuotaList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ResourceQuotaSpec](#resourcequotaspec-v1)* | Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ResourceQuotaStatus](#resourcequotastatus-v1)* | Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -53,7 +55,9 @@ used
*object* | Used is the current observed total usage of the resource Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -109,10 +113,15 @@ create a ResourceQuota Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ResourceQuota](#resourcequota-v1)* | @@ -171,10 +180,15 @@ Parameter | Description ------------ | ----------- name | name of the ResourceQuota namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ResourceQuota](#resourcequota-v1)* | @@ -233,10 +247,15 @@ Parameter | Description ------------ | ----------- name | name of the ResourceQuota namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -295,16 +314,21 @@ Parameter | Description ------------ | ----------- name | name of the ResourceQuota namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -358,18 +382,19 @@ delete collection of ResourceQuota Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -429,15 +454,16 @@ Parameter | Description ------------ | ----------- name | name of the ResourceQuota namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -491,18 +517,19 @@ list or watch objects of kind ResourceQuota Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -551,7 +578,8 @@ list or watch objects of kind ResourceQuota `GET /api/v1/resourcequotas` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -615,10 +643,15 @@ watch changes to an object of kind ResourceQuota Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ResourceQuota namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -673,7 +706,8 @@ watch individual changes to a list of ResourceQuota `GET /api/v1/watch/resourcequotas` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -693,4 +727,205 @@ Code | Description +## Status Operations + +See supported operations below... + +## Patch Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified ResourceQuota + +### HTTP Request + +`PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the ResourceQuota +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[ResourceQuota](#resourcequota-v1)* | OK + + +## Read Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified ResourceQuota + +### HTTP Request + +`GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the ResourceQuota +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[ResourceQuota](#resourcequota-v1)* | OK + + +## Replace Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified ResourceQuota + +### HTTP Request + +`PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the ResourceQuota +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[ResourceQuota](#resourcequota-v1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[ResourceQuota](#resourcequota-v1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_definition.md index 98d2c6c082..24202b22a4 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcequota_v1_definition.md @@ -13,6 +13,8 @@ Appears In ResourceQuotaList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ResourceQuotaSpec](#resourcequotaspec-v1)* | Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ResourceQuotaStatus](#resourcequotastatus-v1)* | Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md index d81526e571..826a8a5073 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md @@ -21,7 +21,9 @@ ResourceQuotaList is a list of ResourceQuota items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -75,11 +77,16 @@ watch individual changes to a list of ResourceQuota ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. diff --git a/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md index 097c8f654a..a29d357ec0 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md @@ -12,6 +12,8 @@ ResourceQuotaList is a list of ResourceQuota items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md index f8041f28cf..862134d6eb 100644 --- a/docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md @@ -29,195 +29,4 @@ used
*object* | Used is the current observed total usage of the resource -## Write Operations - -See supported operations below... - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified ResourceQuota - -### HTTP Request - -`PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ResourceQuota -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[ResourceQuota](#resourcequota-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[ResourceQuota](#resourcequota-v1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified ResourceQuota - -### HTTP Request - -`PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ResourceQuota -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[ResourceQuota](#resourcequota-v1)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified ResourceQuota - -### HTTP Request - -`GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ResourceQuota -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[ResourceQuota](#resourcequota-v1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_concept.md index 482eca1a65..e42e95237c 100644 --- a/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In RoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this Role @@ -32,7 +34,9 @@ rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the P Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. @@ -88,10 +92,15 @@ create a Role Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Role](#role-v1alpha1)* | @@ -150,10 +159,15 @@ Parameter | Description ------------ | ----------- name | name of the Role namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Role](#role-v1alpha1)* | @@ -212,10 +226,15 @@ Parameter | Description ------------ | ----------- name | name of the Role namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -274,16 +293,21 @@ Parameter | Description ------------ | ----------- name | name of the Role namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -337,18 +361,19 @@ delete collection of Role Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -408,6 +433,11 @@ Parameter | Description ------------ | ----------- name | name of the Role namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -464,18 +494,19 @@ list or watch objects of kind Role Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -524,7 +555,8 @@ list or watch objects of kind Role `GET /apis/rbac.authorization.k8s.io/v1alpha1/roles` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -588,10 +620,81 @@ watch changes to an object of kind Role Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Role namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Role + +### HTTP Request + +`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -646,7 +749,8 @@ watch individual changes to a list of Role `GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/roles` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_definition.md index 7dbc7a6b9e..48ceca0bab 100644 --- a/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_role_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In RoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this Role diff --git a/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md index 5b9c94f76f..1a849bd744 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In RoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | 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. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. @@ -33,7 +35,9 @@ subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds reference Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. @@ -89,10 +93,15 @@ create a RoleBinding Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[RoleBinding](#rolebinding-v1alpha1)* | @@ -151,10 +160,15 @@ Parameter | Description ------------ | ----------- name | name of the RoleBinding namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[RoleBinding](#rolebinding-v1alpha1)* | @@ -213,10 +227,15 @@ Parameter | Description ------------ | ----------- name | name of the RoleBinding namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -275,16 +294,21 @@ Parameter | Description ------------ | ----------- name | name of the RoleBinding namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -338,18 +362,19 @@ delete collection of RoleBinding Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -409,6 +434,11 @@ Parameter | Description ------------ | ----------- name | name of the RoleBinding namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -465,18 +495,19 @@ list or watch objects of kind RoleBinding Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -525,7 +556,8 @@ list or watch objects of kind RoleBinding `GET /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -589,10 +621,15 @@ watch changes to an object of kind RoleBinding Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the RoleBinding namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -649,11 +686,16 @@ watch individual changes to a list of RoleBinding ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -708,7 +750,8 @@ watch individual changes to a list of RoleBinding `GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md index a265f600d7..154c27707b 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In RoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | 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. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. diff --git a/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md index f7820c6f84..bc8dbb696a 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md @@ -21,7 +21,9 @@ RoleBindingList is a collection of RoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md index 0fe8d8484a..934b1ab718 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md @@ -12,6 +12,8 @@ RoleBindingList is a collection of RoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md index c3e761995d..1cf13066f4 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -RbacAuthorization | v1alpha1 | RoleList +Core | v1alpha1 | RoleList @@ -21,77 +21,13 @@ RoleList is a collection of Roles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Role - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md index d346430bf6..bef7a9fbdf 100644 --- a/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -RbacAuthorization | v1alpha1 | RoleList +Core | v1alpha1 | RoleList @@ -12,6 +12,8 @@ RoleList is a collection of Roles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_scale_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_scale_v1_concept.md index 13fbf2ee68..1d99158e6e 100644 --- a/docs/api-reference/v1.5/documents/_generated_scale_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_scale_v1_concept.md @@ -21,6 +21,8 @@ Scale represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. @@ -99,6 +101,11 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -156,10 +163,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Scale](#scale-v1)* | @@ -218,10 +230,15 @@ Parameter | Description ------------ | ----------- name | name of the Scale namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | diff --git a/docs/api-reference/v1.5/documents/_generated_scale_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_scale_v1_definition.md index ddbbb854ee..2f015eae27 100644 --- a/docs/api-reference/v1.5/documents/_generated_scale_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_scale_v1_definition.md @@ -12,6 +12,8 @@ Scale represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_concept.md index 087c4a7379..8dfa87193a 100644 --- a/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_concept.md @@ -21,6 +21,8 @@ represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1beta1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1beta1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_definition.md index 0ba6ea4b71..c40ef182a3 100644 --- a/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_scale_v1beta1_definition.md @@ -12,6 +12,8 @@ represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1beta1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1beta1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/api-reference/v1.5/documents/_generated_secret_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_secret_v1_concept.md index 23e97dd233..f5c64f5bcb 100644 --- a/docs/api-reference/v1.5/documents/_generated_secret_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_secret_v1_concept.md @@ -22,7 +22,9 @@ Appears In SecretList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata stringData
*object* | stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. type
*string* | Used to facilitate programmatic handling of secret data. @@ -34,7 +36,9 @@ type
*string* | Used to facilitate programmatic handling of secret data. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -90,10 +94,15 @@ create a Secret Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Secret](#secret-v1)* | @@ -152,10 +161,15 @@ Parameter | Description ------------ | ----------- name | name of the Secret namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Secret](#secret-v1)* | @@ -214,10 +228,15 @@ Parameter | Description ------------ | ----------- name | name of the Secret namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -276,16 +295,21 @@ Parameter | Description ------------ | ----------- name | name of the Secret namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -339,18 +363,19 @@ delete collection of Secret Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -410,15 +435,16 @@ Parameter | Description ------------ | ----------- name | name of the Secret namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -472,18 +498,19 @@ list or watch objects of kind Secret Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -532,7 +559,8 @@ list or watch objects of kind Secret `GET /api/v1/secrets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -596,10 +624,81 @@ watch changes to an object of kind Secret Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Secret namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Secret + +### HTTP Request + +`GET /api/v1/watch/namespaces/{namespace}/secrets` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -654,7 +753,8 @@ watch individual changes to a list of Secret `GET /api/v1/watch/secrets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_secret_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_secret_v1_definition.md index 301c2d08d1..4a78639ee2 100644 --- a/docs/api-reference/v1.5/documents/_generated_secret_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_secret_v1_definition.md @@ -13,7 +13,9 @@ Appears In SecretList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata stringData
*object* | stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. type
*string* | Used to facilitate programmatic handling of secret data. diff --git a/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md index bc1d20414e..efa6b6576d 100644 --- a/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md @@ -23,6 +23,7 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key of the secret to select from. Must be a valid secret key. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md index c1308987e5..203d83b153 100644 --- a/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md @@ -14,4 +14,5 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key of the secret to select from. Must be a valid secret key. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/api-reference/v1.5/documents/_generated_secretlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_secretlist_v1_concept.md index a815ff650d..61adf3b2fd 100644 --- a/docs/api-reference/v1.5/documents/_generated_secretlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_secretlist_v1_concept.md @@ -21,77 +21,13 @@ SecretList is a list of Secret. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Secret - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/secrets` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_secretlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_secretlist_v1_definition.md index 0b7f8190ff..e45bae7a36 100644 --- a/docs/api-reference/v1.5/documents/_generated_secretlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_secretlist_v1_definition.md @@ -12,6 +12,8 @@ SecretList is a list of Secret. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md new file mode 100644 index 0000000000..75dcbee1bf --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# SecretVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | SecretVolumeSource + + + + + + + +Adapts a Secret into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +secretName
*string* | Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md new file mode 100644 index 0000000000..ba85a75451 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## SecretVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | SecretVolumeSource + + + +Adapts a Secret into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +secretName
*string* | Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets + diff --git a/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md index a2365a543a..e8e368e4a1 100644 --- a/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ SelfSubjectAccessReview checks whether or the current user can perform an action Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SelfSubjectAccessReviewSpec](#selfsubjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated. user and groups must be empty status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not @@ -84,13 +86,18 @@ create a SelfSubjectAccessReview `POST /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews` -### Path Parameters + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters Parameter | Description ------------ | ----------- body
*[SelfSubjectAccessReview](#selfsubjectaccessreview-v1beta1)* | -pretty | If 'true', then the output is pretty printed. - ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md index f66feaf709..4099c178e9 100644 --- a/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ SelfSubjectAccessReview checks whether or the current user can perform an action Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SelfSubjectAccessReviewSpec](#selfsubjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated. user and groups must be empty status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/api-reference/v1.5/documents/_generated_service_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_service_v1_concept.md index 538ce5c23e..43eb84359a 100644 --- a/docs/api-reference/v1.5/documents/_generated_service_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_service_v1_concept.md @@ -74,6 +74,8 @@ Appears In ServiceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ServiceSpec](#servicespec-v1)* | Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ServiceStatus](#servicestatus-v1)* | Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -112,7 +114,9 @@ loadBalancer
*[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -225,10 +229,15 @@ create a Service Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Service](#service-v1)* | @@ -360,10 +369,15 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Service](#service-v1)* | @@ -463,10 +477,15 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -536,6 +555,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -673,15 +697,16 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -736,18 +761,19 @@ list or watch objects of kind Service Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -796,7 +822,8 @@ list or watch objects of kind Service `GET /api/v1/services` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -941,71 +968,15 @@ watch changes to an object of kind Service Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of Service - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/services` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -1060,7 +1031,8 @@ watch individual changes to a list of Service `GET /api/v1/watch/services` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -1131,10 +1103,15 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -1193,6 +1170,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- pretty | If 'true', then the output is pretty printed. @@ -1250,10 +1232,15 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Service](#service-v1)* | @@ -1317,6 +1304,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1375,6 +1367,11 @@ Parameter | Description name | name of the Service namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1434,6 +1431,7 @@ name | name of the Service namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1491,6 +1489,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1545,6 +1544,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1603,6 +1607,11 @@ Parameter | Description name | name of the Service namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1662,6 +1671,7 @@ name | name of the Service namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1719,6 +1729,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -1773,6 +1784,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1831,6 +1847,11 @@ Parameter | Description name | name of the Service namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -1890,6 +1911,7 @@ name | name of the Service namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -1947,6 +1969,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description @@ -2001,6 +2024,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -2059,6 +2087,11 @@ Parameter | Description name | name of the Service namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -2116,6 +2149,11 @@ Parameter | Description ------------ | ----------- name | name of the Service namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -2174,6 +2212,11 @@ Parameter | Description name | name of the Service namespace | object name and auth scope, such as for teams and projects path | path to the resource + +### Query Parameters + +Parameter | Description +------------ | ----------- path | Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy. @@ -2233,6 +2276,7 @@ name | name of the Service namespace | object name and auth scope, such as for teams and projects + ### Response Code | Description @@ -2290,6 +2334,7 @@ namespace | object name and auth scope, such as for teams and projects path | path to the resource + ### Response Code | Description diff --git a/docs/api-reference/v1.5/documents/_generated_service_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_service_v1_definition.md index 266f29b74d..bb318c6b6b 100644 --- a/docs/api-reference/v1.5/documents/_generated_service_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_service_v1_definition.md @@ -13,6 +13,8 @@ Appears In ServiceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ServiceSpec](#servicespec-v1)* | Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ServiceStatus](#servicestatus-v1)* | Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md index 4628297e7b..9985ce5628 100644 --- a/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md @@ -22,7 +22,9 @@ Appears In ServiceAccountList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources imagePullSecrets
*[LocalObjectReference](#localobjectreference-v1) array* | 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 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://kubernetes.io/docs/user-guide/secrets @@ -33,7 +35,9 @@ secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -89,10 +93,15 @@ create a ServiceAccount Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ServiceAccount](#serviceaccount-v1)* | @@ -151,10 +160,15 @@ Parameter | Description ------------ | ----------- name | name of the ServiceAccount namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ServiceAccount](#serviceaccount-v1)* | @@ -213,10 +227,15 @@ Parameter | Description ------------ | ----------- name | name of the ServiceAccount namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -275,16 +294,21 @@ Parameter | Description ------------ | ----------- name | name of the ServiceAccount namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -338,18 +362,19 @@ delete collection of ServiceAccount Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -409,15 +434,16 @@ Parameter | Description ------------ | ----------- name | name of the ServiceAccount namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -471,18 +497,19 @@ list or watch objects of kind ServiceAccount Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -531,7 +558,8 @@ list or watch objects of kind ServiceAccount `GET /api/v1/serviceaccounts` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -595,10 +623,15 @@ watch changes to an object of kind ServiceAccount Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ServiceAccount namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -655,11 +688,16 @@ watch individual changes to a list of ServiceAccount ### Path Parameters +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + Parameter | Description ------------ | ----------- fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -714,7 +752,8 @@ watch individual changes to a list of ServiceAccount `GET /api/v1/watch/serviceaccounts` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md index 89983a2ee4..9cc67f6509 100644 --- a/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md @@ -13,7 +13,9 @@ Appears In ServiceAccountList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources imagePullSecrets
*[LocalObjectReference](#localobjectreference-v1) array* | 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 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://kubernetes.io/docs/user-guide/secrets diff --git a/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md index 7570b81ce2..dc37dd78bc 100644 --- a/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md @@ -21,7 +21,9 @@ ServiceAccountList is a list of ServiceAccount objects Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md index 96e992b440..2df64a5d74 100644 --- a/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md @@ -12,6 +12,8 @@ ServiceAccountList is a list of ServiceAccount objects Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_servicelist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_servicelist_v1_concept.md index 073232204f..cefb88939b 100644 --- a/docs/api-reference/v1.5/documents/_generated_servicelist_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_servicelist_v1_concept.md @@ -21,11 +21,84 @@ ServiceList holds a list of services. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of Service + +### HTTP Request + +`GET /api/v1/watch/namespaces/{namespace}/services` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_servicelist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_servicelist_v1_definition.md index 59f23c16cb..21b4736abb 100644 --- a/docs/api-reference/v1.5/documents/_generated_servicelist_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_servicelist_v1_definition.md @@ -12,6 +12,8 @@ ServiceList holds a list of services. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md index 2bbd4875c9..dbde51e2da 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md @@ -25,6 +25,8 @@ Appears In StatefulSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[StatefulSetSpec](#statefulsetspec-v1beta1)* | Spec defines the desired identities of pods in this set. status
*[StatefulSetStatus](#statefulsetstatus-v1beta1)* | Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. @@ -59,7 +61,9 @@ replicas
*integer* | Replicas is the number of actual replicas. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | @@ -115,10 +119,15 @@ create a StatefulSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[StatefulSet](#statefulset-v1beta1)* | @@ -177,10 +186,15 @@ Parameter | Description ------------ | ----------- name | name of the StatefulSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[StatefulSet](#statefulset-v1beta1)* | @@ -239,10 +253,15 @@ Parameter | Description ------------ | ----------- name | name of the StatefulSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -301,16 +320,21 @@ Parameter | Description ------------ | ----------- name | name of the StatefulSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -364,18 +388,19 @@ delete collection of StatefulSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -435,15 +460,16 @@ Parameter | Description ------------ | ----------- name | name of the StatefulSet namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -497,18 +523,19 @@ list or watch objects of kind StatefulSet Parameter | Description ------------ | ----------- namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -557,7 +584,8 @@ list or watch objects of kind StatefulSet `GET /apis/apps/v1beta1/statefulsets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -621,10 +649,81 @@ watch changes to an object of kind StatefulSet Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the StatefulSet namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + +## Watch List + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of StatefulSet + +### HTTP Request + +`GET /apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets` + +### Path Parameters + +Parameter | Description +------------ | ----------- +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. pretty | If 'true', then the output is pretty printed. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. @@ -679,7 +778,8 @@ watch individual changes to a list of StatefulSet `GET /apis/apps/v1beta1/watch/statefulsets` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- @@ -699,4 +799,205 @@ Code | Description +## Status Operations + +See supported operations below... + +## Patch Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +partially update status of the specified StatefulSet + +### HTTP Request + +`PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the StatefulSet +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[Patch](#patch-unversioned)* | + +### Response + +Code | Description +------------ | ----------- +200
*[StatefulSet](#statefulset-v1beta1)* | OK + + +## Read Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +read status of the specified StatefulSet + +### HTTP Request + +`GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the StatefulSet +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + + +### Response + +Code | Description +------------ | ----------- +200
*[StatefulSet](#statefulset-v1beta1)* | OK + + +## Replace Status + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +replace status of the specified StatefulSet + +### HTTP Request + +`PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` + +### Path Parameters + +Parameter | Description +------------ | ----------- +name | name of the StatefulSet +namespace | object name and auth scope, such as for teams and projects + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[StatefulSet](#statefulset-v1beta1)* | + +### Response + +Code | Description +------------ | ----------- +200
*[StatefulSet](#statefulset-v1beta1)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md index 4a41cd4d54..7a4cf49f6a 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md @@ -16,6 +16,8 @@ Appears In StatefulSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[StatefulSetSpec](#statefulsetspec-v1beta1)* | Spec defines the desired identities of pods in this set. status
*[StatefulSetStatus](#statefulsetstatus-v1beta1)* | Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. diff --git a/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md index 590666d32c..3a851e631a 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Apps | v1beta1 | StatefulSetList +Core | v1beta1 | StatefulSetList @@ -21,77 +21,13 @@ StatefulSetList is a collection of StatefulSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of StatefulSet - -### HTTP Request - -`GET /apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets` - -### Path Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md index 6d30b51476..bfc30a38d9 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Apps | v1beta1 | StatefulSetList +Core | v1beta1 | StatefulSetList @@ -12,6 +12,8 @@ StatefulSetList is a collection of StatefulSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md index cd20a432f8..b279ca2b2c 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Apps | v1beta1 | StatefulSetStatus +Core | v1beta1 | StatefulSetStatus @@ -29,195 +29,4 @@ replicas
*integer* | Replicas is the number of actual replicas. -## Write Operations - -See supported operations below... - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified StatefulSet - -### HTTP Request - -`PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the StatefulSet -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[StatefulSet](#statefulset-v1beta1)* | - -### Response - -Code | Description ------------- | ----------- -200
*[StatefulSet](#statefulset-v1beta1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified StatefulSet - -### HTTP Request - -`PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the StatefulSet -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - -### Query Parameters - -Parameter | Description ------------- | ----------- -body
*[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
*[StatefulSet](#statefulset-v1beta1)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified StatefulSet - -### HTTP Request - -`GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the StatefulSet -namespace | object name and auth scope, such as for teams and projects -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
*[StatefulSet](#statefulset-v1beta1)* | OK - - - diff --git a/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md index d7633988be..07b24606aa 100644 --- a/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Apps | v1beta1 | StatefulSetStatus +Core | v1beta1 | StatefulSetStatus diff --git a/docs/api-reference/v1.5/documents/_generated_status_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_status_unversioned_concept.md index 88358cedf0..28d7041a46 100644 --- a/docs/api-reference/v1.5/documents/_generated_status_unversioned_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_status_unversioned_concept.md @@ -21,8 +21,10 @@ Status is a return value for calls that don't return other objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources code
*integer* | Suggested HTTP return code for this status, 0 if not set. details
*[StatusDetails](#statusdetails-unversioned)* | 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. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds message
*string* | A human-readable description of the status of this operation. metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds reason
*string* | A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. diff --git a/docs/api-reference/v1.5/documents/_generated_status_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_status_unversioned_definition.md index 17666f9f39..552589564b 100644 --- a/docs/api-reference/v1.5/documents/_generated_status_unversioned_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_status_unversioned_definition.md @@ -12,8 +12,10 @@ Status is a return value for calls that don't return other objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources code
*integer* | Suggested HTTP return code for this status, 0 if not set. details
*[StatusDetails](#statusdetails-unversioned)* | 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. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds message
*string* | A human-readable description of the status of this operation. metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds reason
*string* | A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. diff --git a/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md index de931c0a6b..655a4f9b79 100644 --- a/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md @@ -24,6 +24,8 @@ Appears In StorageClassList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata parameters
*object* | Parameters holds the parameters for the provisioner that should create volumes of this storage class. provisioner
*string* | Provisioner indicates the type of the provisioner. @@ -35,7 +37,9 @@ provisioner
*string* | Provisioner indicates the type of the provisioner Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -86,13 +90,14 @@ create a StorageClass `POST /apis/storage.k8s.io/v1beta1/storageclasses` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -151,10 +156,15 @@ replace the specified StorageClass Parameter | Description ------------ | ----------- name | name of the StorageClass -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[StorageClass](#storageclass-v1beta1)* | @@ -212,10 +222,15 @@ partially update the specified StorageClass Parameter | Description ------------ | ----------- name | name of the StorageClass -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -273,16 +288,21 @@ delete a StorageClass Parameter | Description ------------ | ----------- name | name of the StorageClass -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -331,22 +351,19 @@ delete collection of StorageClass `DELETE /apis/storage.k8s.io/v1beta1/storageclasses` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -405,15 +422,16 @@ read the specified StorageClass Parameter | Description ------------ | ----------- name | name of the StorageClass -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -462,22 +480,19 @@ list or watch objects of kind StorageClass `GET /apis/storage.k8s.io/v1beta1/storageclasses` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -530,64 +545,9 @@ watch changes to an object of kind StorageClass Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the StorageClass -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of StorageClass - -### HTTP Request - -`GET /apis/storage.k8s.io/v1beta1/watch/storageclasses` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md index d0e0869931..8da41f3e0f 100644 --- a/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md @@ -15,6 +15,8 @@ Appears In StorageClassList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata parameters
*object* | Parameters holds the parameters for the provisioner that should create volumes of this storage class. provisioner
*string* | Provisioner indicates the type of the provisioner. diff --git a/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md index 9571c67b39..8518313686 100644 --- a/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | StorageClassList +Storage | v1beta1 | StorageClassList @@ -21,11 +21,79 @@ StorageClassList is a collection of storage classes. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of StorageClass + +### HTTP Request + +`GET /apis/storage.k8s.io/v1beta1/watch/storageclasses` + + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md index 3c759c12f6..02f0f876b2 100644 --- a/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | StorageClassList +Storage | v1beta1 | StorageClassList @@ -12,6 +12,8 @@ StorageClassList is a collection of storage classes. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md index ede04f1741..4f455dbd26 100644 --- a/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ SubjectAccessReview checks whether or not a user or group can perform an action. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not @@ -98,13 +100,18 @@ create a SubjectAccessReview `POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews` -### Path Parameters + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters Parameter | Description ------------ | ----------- body
*[SubjectAccessReview](#subjectaccessreview-v1beta1)* | -pretty | If 'true', then the output is pretty printed. - ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md index 66ed7825ca..ee9de407bf 100644 --- a/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ SubjectAccessReview checks whether or not a user or group can perform an action. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md index 5b3402d266..18a3576dd1 100644 --- a/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | TCPSocketAction TCPSocketAction describes an action based on opening a socket +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md index 32c9c6c931..1761160b24 100644 --- a/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | TCPSocketAction TCPSocketAction describes an action based on opening a socket +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md index 228972a6c5..95e4176884 100644 --- a/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md @@ -22,7 +22,9 @@ Appears In ThirdPartyResourceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources description
*string* | Description is the description of this object. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versions for this third party object @@ -33,7 +35,9 @@ versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versio Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. @@ -84,13 +88,14 @@ create a ThirdPartyResource `POST /apis/extensions/v1beta1/thirdpartyresources` -### Path Parameters + +### Query Parameters Parameter | Description ------------ | ----------- pretty | If 'true', then the output is pretty printed. -### Query Parameters +### Body Parameters Parameter | Description ------------ | ----------- @@ -149,10 +154,15 @@ replace the specified ThirdPartyResource Parameter | Description ------------ | ----------- name | name of the ThirdPartyResource -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[ThirdPartyResource](#thirdpartyresource-v1beta1)* | @@ -210,10 +220,15 @@ partially update the specified ThirdPartyResource Parameter | Description ------------ | ----------- name | name of the ThirdPartyResource -pretty | If 'true', then the output is pretty printed. ### Query Parameters +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters + Parameter | Description ------------ | ----------- body
*[Patch](#patch-unversioned)* | @@ -271,16 +286,21 @@ delete a ThirdPartyResource Parameter | Description ------------ | ----------- name | name of the ThirdPartyResource -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- -body
*[DeleteOptions](#deleteoptions-v1)* | +pretty | If 'true', then the output is pretty printed. gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. +### Body Parameters + +Parameter | Description +------------ | ----------- +body
*[DeleteOptions](#deleteoptions-v1)* | + ### Response Code | Description @@ -329,22 +349,19 @@ delete collection of ThirdPartyResource `DELETE /apis/extensions/v1beta1/thirdpartyresources` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -403,15 +420,16 @@ read the specified ThirdPartyResource Parameter | Description ------------ | ----------- name | name of the ThirdPartyResource -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' export | Should this value be exported. Export strips fields that a user can not specify. + ### Response Code | Description @@ -460,22 +478,19 @@ list or watch objects of kind ThirdPartyResource `GET /apis/extensions/v1beta1/thirdpartyresources` -### Path Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. ### Query Parameters Parameter | Description ------------ | ----------- +pretty | If 'true', then the output is pretty printed. fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. timeoutSeconds | Timeout for the list/watch call. watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + ### Response Code | Description @@ -528,64 +543,9 @@ watch changes to an object of kind ThirdPartyResource Parameter | Description ------------ | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. name | name of the ThirdPartyResource -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -### Response - -Code | Description ------------- | ----------- -200
*[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ThirdPartyResource - -### HTTP Request - -`GET /apis/extensions/v1beta1/watch/thirdpartyresources` - -### Path Parameters +### Query Parameters Parameter | Description ------------ | ----------- diff --git a/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md index 3e0d4deab3..80e18fe204 100644 --- a/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md @@ -13,7 +13,9 @@ Appears In ThirdPartyResourceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources description
*string* | Description is the description of this object. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versions for this third party object diff --git a/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md index 019691b0bc..e455edbcef 100644 --- a/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md @@ -7,7 +7,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | ThirdPartyResourceList +Extensions | v1beta1 | ThirdPartyResourceList @@ -21,11 +21,79 @@ ThirdPartyResourceList is a list of ThirdPartyResources. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. +## Read Operations + +See supported operations below... + +## Watch + +>bdocs-tab:kubectl `kubectl` Command + +```bdocs-tab:kubectl_shell + +Coming Soon + +``` + +>bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) + +```bdocs-tab:curl_shell + +Coming Soon + +``` + +>bdocs-tab:kubectl Output + +```bdocs-tab:kubectl_json + +Coming Soon + +``` +>bdocs-tab:curl Response Body + +```bdocs-tab:curl_json + +Coming Soon + +``` + + + +watch individual changes to a list of ThirdPartyResource + +### HTTP Request + +`GET /apis/extensions/v1beta1/watch/thirdpartyresources` + + +### Query Parameters + +Parameter | Description +------------ | ----------- +fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. +labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. +pretty | If 'true', then the output is pretty printed. +resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. +timeoutSeconds | Timeout for the list/watch call. +watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. + + +### Response + +Code | Description +------------ | ----------- +200
*[Event](#event-versioned)* | OK + + + diff --git a/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md index 72822779cd..a10a7d2181 100644 --- a/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md @@ -2,7 +2,7 @@ Group | Version | Kind ------------ | ---------- | ----------- -Core | v1beta1 | ThirdPartyResourceList +Extensions | v1beta1 | ThirdPartyResourceList @@ -12,6 +12,8 @@ ThirdPartyResourceList is a list of ThirdPartyResources. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md index 2665db271a..c931d3f7d7 100644 --- a/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md @@ -21,6 +21,8 @@ TokenReview attempts to authenticate a token to a known user. Note: TokenReview Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[TokenReviewSpec](#tokenreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[TokenReviewStatus](#tokenreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request can be authenticated. @@ -94,13 +96,18 @@ create a TokenReview `POST /apis/authentication.k8s.io/v1beta1/tokenreviews` -### Path Parameters + +### Query Parameters + +Parameter | Description +------------ | ----------- +pretty | If 'true', then the output is pretty printed. + +### Body Parameters Parameter | Description ------------ | ----------- body
*[TokenReview](#tokenreview-v1beta1)* | -pretty | If 'true', then the output is pretty printed. - ### Response diff --git a/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md index 3bc0213358..fed1690818 100644 --- a/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md @@ -12,6 +12,8 @@ TokenReview attempts to authenticate a token to a known user. Note: TokenReview Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[TokenReviewSpec](#tokenreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[TokenReviewStatus](#tokenreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request can be authenticated. diff --git a/docs/api-reference/v1.5/documents/_generated_volume_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_volume_v1_concept.md index eea4705dd5..10dbbf60b9 100644 --- a/docs/api-reference/v1.5/documents/_generated_volume_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_volume_v1_concept.md @@ -22,7 +22,30 @@ Appears In PodSpec Field | Description ------------ | ----------- +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +configMap
*[ConfigMapVolumeSource](#configmapvolumesource-v1)* | ConfigMap represents a configMap that should populate this volume +downwardAPI
*[DownwardAPIVolumeSource](#downwardapivolumesource-v1)* | DownwardAPI represents downward API about the pod that should populate this volume +emptyDir
*[EmptyDirVolumeSource](#emptydirvolumesource-v1)* | EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +gitRepo
*[GitRepoVolumeSource](#gitrepovolumesource-v1)* | GitRepo represents a git repository at a particular revision. +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md name
*string* | Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs +persistentVolumeClaim
*[PersistentVolumeClaimVolumeSource](#persistentvolumeclaimvolumesource-v1)* | PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +secret
*[SecretVolumeSource](#secretvolumesource-v1)* | Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/api-reference/v1.5/documents/_generated_volume_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_volume_v1_definition.md index c6776e401f..e9e9dbf630 100644 --- a/docs/api-reference/v1.5/documents/_generated_volume_v1_definition.md +++ b/docs/api-reference/v1.5/documents/_generated_volume_v1_definition.md @@ -13,5 +13,28 @@ Appears In PodSpec Field | Description ------------ | ----------- +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +configMap
*[ConfigMapVolumeSource](#configmapvolumesource-v1)* | ConfigMap represents a configMap that should populate this volume +downwardAPI
*[DownwardAPIVolumeSource](#downwardapivolumesource-v1)* | DownwardAPI represents downward API about the pod that should populate this volume +emptyDir
*[EmptyDirVolumeSource](#emptydirvolumesource-v1)* | EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +gitRepo
*[GitRepoVolumeSource](#gitrepovolumesource-v1)* | GitRepo represents a git repository at a particular revision. +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md name
*string* | Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs +persistentVolumeClaim
*[PersistentVolumeClaimVolumeSource](#persistentvolumeclaimvolumesource-v1)* | PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +secret
*[SecretVolumeSource](#secretvolumesource-v1)* | Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..7bebafb4f1 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# VsphereVirtualDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | VsphereVirtualDiskVolumeSource + + + + + + + +Represents a vSphere volume resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +volumePath
*string* | Path that identifies vSphere volume vmdk + + + + + + diff --git a/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..5ddca32b21 --- /dev/null +++ b/docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## VsphereVirtualDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | VsphereVirtualDiskVolumeSource + + + +Represents a vSphere volume resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +volumePath
*string* | Path that identifies vSphere volume vmdk + diff --git a/docs/api-reference/v1.5/index.html b/docs/api-reference/v1.5/index.html index 1b30567349..cc96bf697e 100644 --- a/docs/api-reference/v1.5/index.html +++ b/docs/api-reference/v1.5/index.html @@ -11,7 +11,7 @@ - +
  • kubectl
  • curl

API OVERVIEW

@@ -294,6 +294,14 @@ Appears In CronJobList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -373,10 +381,18 @@ Appears In CronJob +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
CronJob array Items is the list of CronJob. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -425,13 +441,24 @@ Appears In CronJob namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -506,13 +533,24 @@ Appears In CronJob + +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -587,13 +625,24 @@ Appears In CronJob + +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -668,10 +717,6 @@ Appears In CronJob - - - -
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -684,8 +729,8 @@ Appears In CronJob -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -697,6 +742,21 @@ Appears In CronJob +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -753,10 +813,6 @@ Appears In CronJob - - - -
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -769,6 +825,10 @@ Appears In CronJob +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -852,10 +912,6 @@ Appears In CronJob namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -868,6 +924,10 @@ Appears In CronJob +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -933,10 +993,6 @@ Appears In CronJob namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -949,6 +1005,10 @@ Appears In CronJob +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -1013,7 +1073,7 @@ Appears In CronJob

list or watch objects of kind CronJob

HTTP Request

GET /apis/batch/v2alpha1/cronjobs

-

Path Parameters

+

Query Parameters

@@ -1101,6 +1161,25 @@ Appears In CronJob + + + + + + + + +
namename of the CronJob
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + @@ -1109,13 +1188,98 @@ Appears In CronJob - - + + + + + + + + + + + + + + +
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namename of the CronJobprettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of CronJob

+

HTTP Request

+

GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs

+

Path Parameters

+ + + + + + + + + + +
ParameterDescription
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + @@ -1177,7 +1341,7 @@ Appears In CronJob

watch individual changes to a list of CronJob

HTTP Request

GET /apis/batch/v2alpha1/watch/cronjobs

-

Path Parameters

+

Query Parameters

ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
@@ -1227,6 +1391,269 @@ Appears In CronJob
+

Status Operations

+

See supported operations below...

+

Patch Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

partially update status of the specified CronJob

+

HTTP Request

+

PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the CronJob
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Patch
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
CronJob
OK
+

Read Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

read status of the specified CronJob

+

HTTP Request

+

GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the CronJob
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
CronJob
OK
+

Replace Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

replace status of the specified CronJob

+

HTTP Request

+

PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the CronJob
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
CronJob
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
CronJob
OK

DaemonSet v1beta1

@@ -1318,6 +1745,14 @@ Appears In DaemonSetList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -1393,10 +1828,18 @@ Appears In DaemonSet +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
DaemonSet array Items is a list of daemon sets. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -1548,13 +1991,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -1629,13 +2083,24 @@ spec: + +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -1710,13 +2175,24 @@ spec: + +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -1801,10 +2277,6 @@ orphanDependents: false - - - -
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -1817,8 +2289,8 @@ orphanDependents: false -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -1830,6 +2302,21 @@ orphanDependents: false +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -1886,10 +2373,6 @@ orphanDependents: false - - - -
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -1902,6 +2385,10 @@ orphanDependents: false +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -1984,10 +2471,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -2000,6 +2483,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -2065,10 +2552,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -2081,6 +2564,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -2145,7 +2632,7 @@ $ curl -X GET http://

list or watch objects of kind DaemonSet

HTTP Request

GET /apis/extensions/v1beta1/daemonsets

-

Path Parameters

+

Query Parameters

@@ -2233,14 +2720,6 @@ $ curl -X GET http:// - - - - - - - - @@ -2248,68 +2727,9 @@ $ curl -X GET http:// - - - - - - - - - - - - - - - -
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
name name of the DaemonSet
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of DaemonSet

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets

-

Path Parameters

+

Query Parameters

@@ -2327,10 +2747,6 @@ $ curl -X GET http:// - - - - @@ -2391,7 +2807,7 @@ $ curl -X GET http://

watch individual changes to a list of DaemonSet

HTTP Request

GET /apis/extensions/v1beta1/watch/daemonsets

-

Path Parameters

+

Query Parameters

A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
@@ -2441,9 +2857,9 @@ $ curl -X GET http://
-

Status Operations

+

Status Operations

See supported operations below...

-

Patch Status

+

Patch Status

kubectl Command

@@ -2488,13 +2904,24 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -2524,7 +2951,7 @@ $ curl -X GET http://
-

Read Status

+

Read Status

kubectl Command

@@ -2569,6 +2996,17 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -2590,7 +3028,7 @@ $ curl -X GET http://
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Replace Status

+

Replace Status

kubectl Command

@@ -2635,13 +3073,24 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -2685,8 +3134,8 @@ $ curl -X GET http:// spec: # 3 Pods should exist at all times. replicas: 3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit: 10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit: 2 template: metadata: labels: @@ -2711,8 +3160,8 @@ $ curl -X GET http:// spec: # 3 Pods should exist at all times. replicas: 3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit: 10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit: 2 template: metadata: labels: @@ -2754,6 +3203,14 @@ Appears In DeploymentList + + + + + + + + @@ -2865,10 +3322,18 @@ Appears In Deployment + + + + + + + + @@ -2906,6 +3371,14 @@ Appears In DeploymentSpec + + + + + + + + @@ -2941,9 +3414,9 @@ Appears In DeploymentStrategy
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Deployment array
Items is the list of Deployments.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
name
string
Required: This must match the Name of a deployment.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -3081,13 +3554,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -3117,7 +3601,7 @@ spec:
-

Replace

+

Replace

kubectl Command

@@ -3264,13 +3748,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -3300,7 +3795,7 @@ spec:
-

Patch

+

Patch

kubectl Command

@@ -3418,13 +3913,24 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Query Parameters + + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -3454,7 +3960,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Delete +

Delete

kubectl Command

@@ -3509,10 +4015,6 @@ orphanDependents: false
- - - -
namespace object name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -3525,8 +4027,8 @@ orphanDependents: false -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -3538,6 +4040,21 @@ orphanDependents: false +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -3553,7 +4070,7 @@ orphanDependents: false
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -3594,10 +4111,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -3610,6 +4123,10 @@ orphanDependents: false +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -3646,9 +4163,9 @@ orphanDependents: false -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -3830,10 +4347,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -3846,6 +4359,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -3870,7 +4387,7 @@ $ curl -X GET http:// -

List

+

List

kubectl Command

@@ -4192,10 +4709,6 @@ $ kubectl get deployment -o json namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -4208,6 +4721,10 @@ $ kubectl get deployment -o json +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -4244,7 +4761,7 @@ $ kubectl get deployment -o json -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -4272,7 +4789,7 @@ $ kubectl get deployment -o json

list or watch objects of kind Deployment

HTTP Request

GET /apis/extensions/v1beta1/deployments

-

Path Parameters

+

Query Parameters

@@ -4322,7 +4839,7 @@ $ kubectl get deployment -o json
-

Watch

+

Watch

kubectl Command

@@ -4507,14 +5024,6 @@ $ kubectl get deployment deployment-example -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Deployment @@ -4522,6 +5031,25 @@ $ kubectl get deployment deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -4555,7 +5083,7 @@ $ kubectl get deployment deployment-example
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List

+

Watch List

kubectl Command

@@ -4593,79 +5121,12 @@ $ kubectl get deployment deployment-example -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List All Namespaces

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of Deployment

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/deployments

-

Path Parameters

+

Query Parameters

@@ -4715,6 +5176,347 @@ $ kubectl get deployment deployment-example
+

Watch List All Namespaces

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Deployment

+

HTTP Request

+

GET /apis/extensions/v1beta1/watch/deployments

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Status Operations

+

See supported operations below...

+

Patch Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

partially update status of the specified Deployment

+

HTTP Request

+

PATCH /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the Deployment
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Patch
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Deployment
OK
+

Read Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

read status of the specified Deployment

+

HTTP Request

+

GET /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the Deployment
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Deployment
OK
+

Replace Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

replace status of the specified Deployment

+

HTTP Request

+

PUT /apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the Deployment
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Deployment
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Deployment
OK

Misc Operations

See supported operations below...

Read Scale

@@ -4762,6 +5564,17 @@ $ kubectl get deployment deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -4828,13 +5641,24 @@ $ kubectl get deployment deployment-example namespace + +
ParameterDescription
pretty If 'true', then the output is pretty printed.object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -4909,13 +5733,24 @@ $ kubectl get deployment deployment-example namespace + +
object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -4983,10 +5818,6 @@ $ kubectl get deployment deployment-example - - - - @@ -4994,12 +5825,38 @@ $ kubectl get deployment deployment-example namespace + +
body
DeploymentRollback
name name of the DeploymentRollback
object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeploymentRollback

Response

@@ -5093,6 +5950,14 @@ Appears In JobList + + + + + + + + @@ -5192,18 +6057,26 @@ Appears In Job + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Job array
Items is the list of Job.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -5326,13 +6199,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -5362,7 +6246,7 @@ spec:
-

Replace

+

Replace

kubectl Command

@@ -5407,13 +6291,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -5443,7 +6338,7 @@ spec:
-

Patch

+

Patch

kubectl Command

@@ -5488,13 +6383,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -5524,7 +6430,7 @@ spec:
-

Delete

+

Delete

kubectl Command

@@ -5579,10 +6485,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -5595,8 +6497,8 @@ orphanDependents: false -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -5608,6 +6510,21 @@ orphanDependents: false +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -5623,7 +6540,7 @@ orphanDependents: false
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -5664,10 +6581,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -5680,6 +6593,10 @@ orphanDependents: false +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -5716,9 +6633,9 @@ orphanDependents: false -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -5874,10 +6791,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -5890,6 +6803,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -5914,7 +6831,7 @@ $ curl -X GET http:// -

List

+

List

kubectl Command

@@ -6082,10 +6999,6 @@ $ kubectl get job -o json namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -6098,6 +7011,10 @@ $ kubectl get job -o json +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -6134,7 +7051,7 @@ $ kubectl get job -o json -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -6162,7 +7079,7 @@ $ kubectl get job -o json

list or watch objects of kind Job

HTTP Request

GET /apis/batch/v1/jobs

-

Path Parameters

+

Query Parameters

@@ -6212,7 +7129,7 @@ $ kubectl get job -o json
-

Watch

+

Watch

kubectl Command

@@ -6371,14 +7288,6 @@ $ kubectl get job example-job get job example-job Query Parameters + + + + + + + + + + + + + + + + @@ -6419,7 +7347,100 @@ $ kubectl get job example-job Watch List All Namespaces +

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Job

+

HTTP Request

+

GET /apis/batch/v1/watch/namespaces/{namespace}/jobs

+

Path Parameters

+
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
+ + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

kubectl Command

@@ -6447,7 +7468,7 @@ $ kubectl get job example-job HTTP Request

GET /apis/batch/v1/watch/jobs

-

Path Parameters

+

Query Parameters

@@ -6497,236 +7518,6 @@ $ kubectl get job example-job Status Operations -

See supported operations below...

-

Patch Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

partially update status of the specified Job

-

HTTP Request

-

PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

-
- - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Patch
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK
-

Read Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

read status of the specified Job

-

HTTP Request

-

GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK
-

Replace Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

replace status of the specified Job

-

HTTP Request

-

PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Job
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK

Pod v1

@@ -6792,6 +7583,14 @@ Appears In PodList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -6943,18 +7742,26 @@ Appears In Pod +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Pod array List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -6995,13 +7802,24 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -7031,7 +7849,7 @@ Appears In Pod
-

Replace

+

Replace

kubectl Command

@@ -7076,13 +7894,24 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -7112,7 +7941,7 @@ Appears In Pod
-

Patch

+

Patch

kubectl Command

@@ -7157,13 +7986,24 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -7193,7 +8033,7 @@ Appears In Pod
-

Delete

+

Delete

kubectl Command

@@ -7238,10 +8078,6 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -7254,8 +8090,8 @@ Appears In Pod -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -7267,6 +8103,21 @@ Appears In Pod +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -7282,7 +8133,7 @@ Appears In Pod
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -7323,10 +8174,6 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -7339,6 +8186,10 @@ Appears In Pod +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -7375,9 +8226,9 @@ Appears In Pod -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -7422,10 +8273,6 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -7438,6 +8285,10 @@ Appears In Pod +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -7462,7 +8313,7 @@ Appears In Pod -

List

+

List

kubectl Command

@@ -7503,10 +8354,6 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -7519,6 +8366,10 @@ Appears In Pod +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -7555,7 +8406,7 @@ Appears In Pod -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -7583,7 +8434,7 @@ Appears In Pod

list or watch objects of kind Pod

HTTP Request

GET /api/v1/pods

-

Path Parameters

+

Query Parameters

@@ -7633,7 +8484,7 @@ Appears In Pod
-

Watch

+

Watch

kubectl Command

@@ -7671,14 +8522,6 @@ Appears In Pod -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Pod @@ -7686,6 +8529,25 @@ Appears In Pod namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -7719,7 +8581,100 @@ Appears In Pod
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Pod

+

HTTP Request

+

GET /api/v1/watch/namespaces/{namespace}/pods

+

Path Parameters

+ + + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

kubectl Command

@@ -7747,7 +8702,7 @@ Appears In Pod

watch individual changes to a list of Pod

HTTP Request

GET /api/v1/watch/pods

-

Path Parameters

+

Query Parameters

@@ -7906,6 +8861,17 @@ Appears In Pod + +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -7976,6 +8942,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. path path to the resource
+

Query Parameters

+ + + + + + + + @@ -8170,6 +9147,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -8240,6 +9228,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. path path to the resource
+

Query Parameters

+ + + + + + + + @@ -8496,6 +9495,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -8566,6 +9576,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. path path to the resource
+

Query Parameters

+ + + + + + + + @@ -8760,6 +9781,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -8830,6 +9862,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. path path to the resource
+

Query Parameters

+ + + + + + + + @@ -8896,6 +9939,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -8966,6 +10020,17 @@ Appears In Pod + +
ParameterDescription
path Path is the URL path to use for the current proxy request to pod. path path to the resource
+

Query Parameters

+ + + + + + + + @@ -9115,7 +10180,7 @@ Appears In Pod
ParameterDescription
path Path is the URL path to use for the current proxy request to pod.
-

Misc Operations

+

Misc Operations

See supported operations below...

Read Log

@@ -9155,6 +10220,25 @@ Appears In Pod +name +name of the Pod + + +namespace +object name and auth scope, such as for teams and projects + + + +

Query Parameters

+ + + + + + + + + @@ -9167,14 +10251,6 @@ Appears In Pod - - - - - - - - @@ -9296,6 +10372,14 @@ Appears In ReplicaSetList + + + + + + + + @@ -9387,18 +10471,26 @@ Appears In ReplicaSet + + + + + + + +
ParameterDescription
container The container for which to stream logs. Defaults to only container if there is one container in the pod.
If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.
namename of the Pod
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ReplicaSet array
List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -9439,13 +10531,24 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -9475,7 +10578,7 @@ Appears In ReplicaSet
-

Replace

+

Replace

kubectl Command

@@ -9520,13 +10623,24 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -9556,7 +10670,7 @@ Appears In ReplicaSet
-

Patch

+

Patch

kubectl Command

@@ -9601,13 +10715,24 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -9637,7 +10762,7 @@ Appears In ReplicaSet
-

Delete

+

Delete

kubectl Command

@@ -9682,10 +10807,6 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -9698,8 +10819,8 @@ Appears In ReplicaSet -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -9711,6 +10832,21 @@ Appears In ReplicaSet +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -9726,7 +10862,7 @@ Appears In ReplicaSet
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -9767,10 +10903,6 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -9783,6 +10915,10 @@ Appears In ReplicaSet +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -9819,9 +10955,9 @@ Appears In ReplicaSet -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -9866,10 +11002,6 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -9882,6 +11014,10 @@ Appears In ReplicaSet +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -9906,7 +11042,7 @@ Appears In ReplicaSet -

List

+

List

kubectl Command

@@ -9947,10 +11083,6 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -9963,6 +11095,10 @@ Appears In ReplicaSet +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -9999,7 +11135,7 @@ Appears In ReplicaSet -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -10027,7 +11163,7 @@ Appears In ReplicaSet

list or watch objects of kind ReplicaSet

HTTP Request

GET /apis/extensions/v1beta1/replicasets

-

Path Parameters

+

Query Parameters

@@ -10077,7 +11213,7 @@ Appears In ReplicaSet
-

Watch

+

Watch

kubectl Command

@@ -10115,14 +11251,6 @@ Appears In ReplicaSet -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ReplicaSet @@ -10130,6 +11258,25 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -10163,7 +11310,7 @@ Appears In ReplicaSet
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List

+

Watch List

kubectl Command

@@ -10201,79 +11348,12 @@ Appears In ReplicaSet -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List All Namespaces

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of ReplicaSet

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/replicasets

-

Path Parameters

+

Query Parameters

@@ -10323,9 +11403,87 @@ Appears In ReplicaSet
-

Misc Operations

+

Watch List All Namespaces

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of ReplicaSet

+

HTTP Request

+

GET /apis/extensions/v1beta1/watch/replicasets

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Misc Operations

See supported operations below...

-

Read Scale

+

Read Scale

kubectl Command

@@ -10370,6 +11528,17 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -10391,7 +11560,7 @@ Appears In ReplicaSet
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Replace Scale

+

Replace Scale

kubectl Command

@@ -10436,13 +11605,24 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -10472,7 +11652,7 @@ Appears In ReplicaSet
-

Patch Scale

+

Patch Scale

kubectl Command

@@ -10517,13 +11697,24 @@ Appears In ReplicaSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -10634,6 +11825,14 @@ Appears In ReplicationControllerList + + + + + + + + @@ -10725,18 +11924,26 @@ Appears In ReplicationController + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ReplicationController array
List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -10777,13 +11984,24 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -10813,7 +12031,7 @@ Appears In ReplicationController
-

Replace

+

Replace

kubectl Command

@@ -10858,13 +12076,24 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -10894,7 +12123,7 @@ Appears In ReplicationController
-

Patch

+

Patch

kubectl Command

@@ -10939,13 +12168,24 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -10975,7 +12215,7 @@ Appears In ReplicationController
-

Delete

+

Delete

kubectl Command

@@ -11020,10 +12260,6 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -11036,8 +12272,8 @@ Appears In ReplicationController -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -11049,6 +12285,21 @@ Appears In ReplicationController +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -11064,7 +12315,7 @@ Appears In ReplicationController
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -11105,10 +12356,6 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -11121,6 +12368,10 @@ Appears In ReplicationController +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -11157,9 +12408,9 @@ Appears In ReplicationController -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -11204,10 +12455,6 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -11220,6 +12467,10 @@ Appears In ReplicationController +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -11244,7 +12495,7 @@ Appears In ReplicationController -

List

+

List

kubectl Command

@@ -11285,10 +12536,6 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -11301,6 +12548,10 @@ Appears In ReplicationController +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -11337,7 +12588,7 @@ Appears In ReplicationController -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -11365,7 +12616,7 @@ Appears In ReplicationController list or watch objects of kind ReplicationController

HTTP Request

GET /api/v1/replicationcontrollers

-

Path Parameters

+

Query Parameters

@@ -11415,7 +12666,7 @@ Appears In ReplicationController
-

Watch

+

Watch

kubectl Command

@@ -11453,14 +12704,6 @@ Appears In ReplicationController -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ReplicationController @@ -11468,6 +12711,25 @@ Appears In ReplicationController namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -11501,7 +12763,7 @@ Appears In ReplicationController
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -11529,7 +12791,7 @@ Appears In ReplicationController watch individual changes to a list of ReplicationController

HTTP Request

GET /api/v1/watch/replicationcontrollers

-

Path Parameters

+

Query Parameters

@@ -11615,6 +12877,14 @@ Appears In StatefulSetList + + + + + + + + @@ -11694,18 +12964,26 @@ Appears In StatefulSet + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
StatefulSet array
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -11746,13 +13024,24 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -11782,7 +13071,7 @@ Appears In StatefulSet
-

Replace

+

Replace

kubectl Command

@@ -11827,13 +13116,24 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -11863,7 +13163,7 @@ Appears In StatefulSet
-

Patch

+

Patch

kubectl Command

@@ -11908,13 +13208,24 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -11944,7 +13255,7 @@ Appears In StatefulSet
-

Delete

+

Delete

kubectl Command

@@ -11989,10 +13300,6 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -12005,8 +13312,8 @@ Appears In StatefulSet -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -12018,6 +13325,21 @@ Appears In StatefulSet +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -12033,7 +13355,7 @@ Appears In StatefulSet
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -12074,10 +13396,6 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -12090,6 +13408,10 @@ Appears In StatefulSet +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -12126,9 +13448,9 @@ Appears In StatefulSet -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -12173,10 +13495,6 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -12189,6 +13507,10 @@ Appears In StatefulSet +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -12213,7 +13535,7 @@ Appears In StatefulSet -

List

+

List

kubectl Command

@@ -12254,10 +13576,6 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -12270,6 +13588,10 @@ Appears In StatefulSet +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -12306,7 +13628,7 @@ Appears In StatefulSet -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -12334,7 +13656,7 @@ Appears In StatefulSet

list or watch objects of kind StatefulSet

HTTP Request

GET /apis/apps/v1beta1/statefulsets

-

Path Parameters

+

Query Parameters

@@ -12384,7 +13706,7 @@ Appears In StatefulSet
-

Watch

+

Watch

kubectl Command

@@ -12422,14 +13744,6 @@ Appears In StatefulSet -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the StatefulSet @@ -12437,68 +13751,9 @@ Appears In StatefulSet namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List All Namespaces

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of StatefulSet

-

HTTP Request

-

GET /apis/apps/v1beta1/watch/statefulsets

-

Path Parameters

+

Query Parameters

@@ -12548,6 +13803,440 @@ Appears In StatefulSet
+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of StatefulSet

+

HTTP Request

+

GET /apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets

+

Path Parameters

+ + + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of StatefulSet

+

HTTP Request

+

GET /apis/apps/v1beta1/watch/statefulsets

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Status Operations

+

See supported operations below...

+

Patch Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

partially update status of the specified StatefulSet

+

HTTP Request

+

PATCH /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the StatefulSet
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Patch
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
StatefulSet
OK
+

Read Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

read status of the specified StatefulSet

+

HTTP Request

+

GET /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the StatefulSet
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
StatefulSet
OK
+

Replace Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

replace status of the specified StatefulSet

+

HTTP Request

+

PUT /apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the StatefulSet
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
StatefulSet
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
StatefulSet
OK

DISCOVERY & LOAD BALANCING

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 @@ -12601,6 +14290,14 @@ Appears In EndpointsList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -12620,18 +14317,26 @@ Appears In EndpointsList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Endpoints array List of endpoints. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -12672,13 +14377,24 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -12708,7 +14424,7 @@ Appears In EndpointsList
-

Replace

+

Replace

kubectl Command

@@ -12753,13 +14469,24 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -12789,7 +14516,7 @@ Appears In EndpointsList
-

Patch

+

Patch

kubectl Command

@@ -12834,13 +14561,24 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -12870,7 +14608,7 @@ Appears In EndpointsList
-

Delete

+

Delete

kubectl Command

@@ -12915,10 +14653,6 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -12931,8 +14665,8 @@ Appears In EndpointsList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -12944,6 +14678,21 @@ Appears In EndpointsList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -12959,7 +14708,7 @@ Appears In EndpointsList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -13000,10 +14749,6 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -13016,6 +14761,10 @@ Appears In EndpointsList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -13052,9 +14801,9 @@ Appears In EndpointsList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -13099,10 +14848,6 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -13115,6 +14860,10 @@ Appears In EndpointsList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -13139,7 +14888,7 @@ Appears In EndpointsList -

List

+

List

kubectl Command

@@ -13180,10 +14929,6 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -13196,6 +14941,10 @@ Appears In EndpointsList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -13232,7 +14981,7 @@ Appears In EndpointsList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -13260,7 +15009,7 @@ Appears In EndpointsList

list or watch objects of kind Endpoints

HTTP Request

GET /api/v1/endpoints

-

Path Parameters

+

Query Parameters

@@ -13310,7 +15059,7 @@ Appears In EndpointsList
-

Watch

+

Watch

kubectl Command

@@ -13348,14 +15097,6 @@ Appears In EndpointsList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Endpoints @@ -13363,6 +15104,25 @@ Appears In EndpointsList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -13396,7 +15156,100 @@ Appears In EndpointsList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Endpoints

+

HTTP Request

+

GET /api/v1/watch/namespaces/{namespace}/endpoints

+

Path Parameters

+ + + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

kubectl Command

@@ -13424,7 +15277,7 @@ Appears In EndpointsList

watch individual changes to a list of Endpoints

HTTP Request

GET /api/v1/watch/endpoints

-

Path Parameters

+

Query Parameters

@@ -13505,6 +15358,14 @@ Appears In IngressList + + + + + + + + @@ -13572,18 +15433,26 @@ Appears In Ingress + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Ingress array
Items is the list of Ingress.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -13624,13 +15493,24 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -13660,7 +15540,7 @@ Appears In Ingress
-

Replace

+

Replace

kubectl Command

@@ -13705,13 +15585,24 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -13741,7 +15632,7 @@ Appears In Ingress
-

Patch

+

Patch

kubectl Command

@@ -13786,13 +15677,24 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -13822,7 +15724,7 @@ Appears In Ingress
-

Delete

+

Delete

kubectl Command

@@ -13867,10 +15769,6 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -13883,8 +15781,8 @@ Appears In Ingress -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -13896,6 +15794,21 @@ Appears In Ingress +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -13911,7 +15824,7 @@ Appears In Ingress
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -13952,10 +15865,6 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -13968,6 +15877,10 @@ Appears In Ingress +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -14004,9 +15917,9 @@ Appears In Ingress -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -14051,10 +15964,6 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -14067,6 +15976,10 @@ Appears In Ingress +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -14091,7 +16004,7 @@ Appears In Ingress -

List

+

List

kubectl Command

@@ -14132,10 +16045,6 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -14148,6 +16057,10 @@ Appears In Ingress +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -14184,7 +16097,7 @@ Appears In Ingress -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -14212,7 +16125,7 @@ Appears In Ingress

list or watch objects of kind Ingress

HTTP Request

GET /apis/extensions/v1beta1/ingresses

-

Path Parameters

+

Query Parameters

@@ -14262,7 +16175,7 @@ Appears In Ingress
-

Watch

+

Watch

kubectl Command

@@ -14300,14 +16213,6 @@ Appears In Ingress -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Ingress @@ -14315,68 +16220,9 @@ Appears In Ingress namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of Ingress

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses

-

Path Parameters

+

Query Parameters

@@ -14394,10 +16240,6 @@ Appears In Ingress - - - - @@ -14430,7 +16272,7 @@ Appears In Ingress
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -14458,7 +16300,7 @@ Appears In Ingress

watch individual changes to a list of Ingress

HTTP Request

GET /apis/extensions/v1beta1/watch/ingresses

-

Path Parameters

+

Query Parameters

@@ -14508,236 +16350,6 @@ Appears In Ingress
-

Status Operations

-

See supported operations below...

-

Patch Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

partially update status of the specified Ingress

-

HTTP Request

-

PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Ingress
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Patch
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Ingress
OK
-

Read Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

read status of the specified Ingress

-

HTTP Request

-

GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Ingress
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Ingress
OK
-

Replace Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

replace status of the specified Ingress

-

HTTP Request

-

PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Ingress
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Ingress
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Ingress
OK

Service v1

@@ -14817,6 +16429,14 @@ Appears In ServiceList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -14912,18 +16532,26 @@ Appears In Service +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Service array List of services +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -15021,13 +16649,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -15057,7 +16696,7 @@ spec:
-

Replace

+

Replace

kubectl Command

@@ -15175,13 +16814,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -15211,7 +16861,7 @@ spec:
-

Patch

+

Patch

kubectl Command

@@ -15297,13 +16947,24 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Query Parameters + + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -15333,7 +16994,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Delete +

Delete

kubectl Command

@@ -15388,6 +17049,17 @@ orphanDependents: false
+ +
namespace object name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + @@ -15409,9 +17081,9 @@ orphanDependents: false
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -15531,10 +17203,6 @@ $ kubectl get service deployment-namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -15547,6 +17215,10 @@ $ kubectl get service deployment- +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -15571,7 +17243,7 @@ $ kubectl get service deployment- -

List

+

List

kubectl Command

@@ -15611,10 +17283,6 @@ $ kubectl get service -o json namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -15627,6 +17295,10 @@ $ kubectl get service -o json +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -15663,7 +17335,7 @@ $ kubectl get service -o json -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -15691,7 +17363,7 @@ $ kubectl get service -o json

list or watch objects of kind Service

HTTP Request

GET /api/v1/services

-

Path Parameters

+

Query Parameters

@@ -15741,7 +17413,7 @@ $ kubectl get service -o json
-

Watch

+

Watch

kubectl Command

@@ -15860,14 +17532,6 @@ $ kubectl get service deployment-example -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Service @@ -15875,68 +17539,9 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of Service

-

HTTP Request

-

GET /api/v1/watch/namespaces/{namespace}/services

-

Path Parameters

+

Query Parameters

@@ -15954,10 +17559,6 @@ $ kubectl get service deployment-example A selector to restrict the list of returned objects by their labels. Defaults to everything. - - - - @@ -15990,7 +17591,7 @@ $ kubectl get service deployment-example
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -16018,7 +17619,7 @@ $ kubectl get service deployment-example watch individual changes to a list of Service

HTTP Request

GET /api/v1/watch/services

-

Path Parameters

+

Query Parameters

@@ -16068,9 +17669,9 @@ $ kubectl get service deployment-example
-

Status Operations

+

Status Operations

See supported operations below...

-

Patch Status

+

Patch Status

kubectl Command

@@ -16115,13 +17716,24 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -16151,7 +17763,7 @@ $ kubectl get service deployment-example
-

Read Status

+

Read Status

kubectl Command

@@ -16196,6 +17808,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -16217,7 +17840,7 @@ $ kubectl get service deployment-example
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Replace Status

+

Replace Status

kubectl Command

@@ -16262,13 +17885,24 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -16298,9 +17932,9 @@ $ kubectl get service deployment-example
-

Proxy Operations

+

Proxy Operations

See supported operations below...

-

Create Connect Proxy

+

Create Connect Proxy

kubectl Command

@@ -16345,6 +17979,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -16366,7 +18011,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Create Connect Proxy Path

+

Create Connect Proxy Path

kubectl Command

@@ -16415,6 +18060,17 @@ $ kubectl get service deployment-example path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -16436,7 +18092,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Create Proxy

+

Create Proxy

kubectl Command

@@ -16498,7 +18154,7 @@ $ kubectl get service deployment-example -

Create Proxy Path

+

Create Proxy Path

kubectl Command

@@ -16564,7 +18220,7 @@ $ kubectl get service deployment-example -

Delete Connect Proxy

+

Delete Connect Proxy

kubectl Command

@@ -16609,6 +18265,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -16630,7 +18297,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Delete Connect Proxy Path

+

Delete Connect Proxy Path

kubectl Command

@@ -16679,6 +18346,17 @@ $ kubectl get service deployment-example path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -16700,7 +18378,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Delete Proxy

+

Delete Proxy

kubectl Command

@@ -16762,7 +18440,7 @@ $ kubectl get service deployment-example -

Delete Proxy Path

+

Delete Proxy Path

kubectl Command

@@ -16828,7 +18506,7 @@ $ kubectl get service deployment-example -

Get Connect Proxy

+

Get Connect Proxy

kubectl Command

@@ -16873,6 +18551,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -16894,7 +18583,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Get Connect Proxy Path

+

Get Connect Proxy Path

kubectl Command

@@ -16943,6 +18632,17 @@ $ kubectl get service deployment-example path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -16964,7 +18664,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Get Proxy

+

Get Proxy

kubectl Command

@@ -17026,7 +18726,7 @@ $ kubectl get service deployment-example -

Get Proxy Path

+

Get Proxy Path

kubectl Command

@@ -17092,7 +18792,7 @@ $ kubectl get service deployment-example -

Head Connect Proxy

+

Head Connect Proxy

kubectl Command

@@ -17137,6 +18837,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -17158,7 +18869,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Head Connect Proxy Path

+

Head Connect Proxy Path

kubectl Command

@@ -17207,6 +18918,17 @@ $ kubectl get service deployment-example path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -17228,7 +18950,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Replace Connect Proxy

+

Replace Connect Proxy

kubectl Command

@@ -17273,6 +18995,17 @@ $ kubectl get service deployment-example namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -17294,7 +19027,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Replace Connect Proxy Path

+

Replace Connect Proxy Path

kubectl Command

@@ -17343,6 +19076,17 @@ $ kubectl get service deployment-example path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -17364,7 +19108,7 @@ $ kubectl get service deployment-example
ParameterDescription
path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.
-

Replace Proxy

+

Replace Proxy

kubectl Command

@@ -17426,7 +19170,7 @@ $ kubectl get service deployment-example -

Replace Proxy Path

+

Replace Proxy Path

kubectl Command

@@ -17532,10 +19276,18 @@ Appears In ConfigMapList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + data
object Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -17551,18 +19303,26 @@ Appears In ConfigMapList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ConfigMap array Items is the list of ConfigMaps. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -17603,13 +19363,24 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -17639,7 +19410,7 @@ Appears In ConfigMapList
-

Replace

+

Replace

kubectl Command

@@ -17684,13 +19455,24 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -17720,7 +19502,7 @@ Appears In ConfigMapList
-

Patch

+

Patch

kubectl Command

@@ -17765,13 +19547,24 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -17801,7 +19594,7 @@ Appears In ConfigMapList
-

Delete

+

Delete

kubectl Command

@@ -17846,10 +19639,6 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -17862,8 +19651,8 @@ Appears In ConfigMapList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -17875,6 +19664,21 @@ Appears In ConfigMapList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -17890,7 +19694,7 @@ Appears In ConfigMapList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -17931,10 +19735,6 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -17947,6 +19747,10 @@ Appears In ConfigMapList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -17983,9 +19787,9 @@ Appears In ConfigMapList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -18030,10 +19834,6 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -18046,6 +19846,10 @@ Appears In ConfigMapList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -18070,7 +19874,7 @@ Appears In ConfigMapList -

List

+

List

kubectl Command

@@ -18111,10 +19915,6 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -18127,6 +19927,10 @@ Appears In ConfigMapList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -18163,7 +19967,7 @@ Appears In ConfigMapList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -18191,7 +19995,7 @@ Appears In ConfigMapList

list or watch objects of kind ConfigMap

HTTP Request

GET /api/v1/configmaps

-

Path Parameters

+

Query Parameters

@@ -18241,7 +20045,7 @@ Appears In ConfigMapList
-

Watch

+

Watch

kubectl Command

@@ -18279,14 +20083,6 @@ Appears In ConfigMapList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ConfigMap @@ -18294,6 +20090,25 @@ Appears In ConfigMapList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -18327,7 +20142,7 @@ Appears In ConfigMapList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -18355,7 +20170,7 @@ Appears In ConfigMapList

watch individual changes to a list of ConfigMap

HTTP Request

GET /api/v1/watch/configmaps

-

Path Parameters

+

Query Parameters

@@ -18436,10 +20251,18 @@ Appears In SecretList + + + + + + + + @@ -18463,18 +20286,26 @@ Appears In SecretList + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
data
object
Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Secret array
Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -18515,13 +20346,24 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -18551,7 +20393,7 @@ Appears In SecretList
-

Replace

+

Replace

kubectl Command

@@ -18596,13 +20438,24 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -18632,7 +20485,7 @@ Appears In SecretList
-

Patch

+

Patch

kubectl Command

@@ -18677,13 +20530,24 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -18713,7 +20577,7 @@ Appears In SecretList
-

Delete

+

Delete

kubectl Command

@@ -18758,10 +20622,6 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -18774,8 +20634,8 @@ Appears In SecretList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -18787,6 +20647,21 @@ Appears In SecretList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -18802,7 +20677,7 @@ Appears In SecretList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -18843,10 +20718,6 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -18859,6 +20730,10 @@ Appears In SecretList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -18895,9 +20770,9 @@ Appears In SecretList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -18942,10 +20817,6 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -18958,6 +20829,10 @@ Appears In SecretList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -18982,7 +20857,7 @@ Appears In SecretList -

List

+

List

kubectl Command

@@ -19023,10 +20898,6 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -19039,6 +20910,10 @@ Appears In SecretList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -19075,7 +20950,7 @@ Appears In SecretList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -19103,7 +20978,7 @@ Appears In SecretList

list or watch objects of kind Secret

HTTP Request

GET /api/v1/secrets

-

Path Parameters

+

Query Parameters

@@ -19153,7 +21028,7 @@ Appears In SecretList
-

Watch

+

Watch

kubectl Command

@@ -19191,14 +21066,6 @@ Appears In SecretList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Secret @@ -19206,6 +21073,25 @@ Appears In SecretList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -19239,7 +21125,100 @@ Appears In SecretList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Secret

+

HTTP Request

+

GET /api/v1/watch/namespaces/{namespace}/secrets

+

Path Parameters

+ + + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

kubectl Command

@@ -19267,7 +21246,7 @@ Appears In SecretList

watch individual changes to a list of Secret

HTTP Request

GET /api/v1/watch/secrets

-

Path Parameters

+

Query Parameters

@@ -19353,6 +21332,14 @@ Appears In PersistentVolumeClaimList + + + + + + + + @@ -19432,18 +21419,26 @@ Appears In PersistentVolumeClaim + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
PersistentVolumeClaim array
A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -19484,13 +21479,24 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -19520,7 +21526,7 @@ Appears In PersistentVolumeClaim
-

Replace

+

Replace

kubectl Command

@@ -19565,13 +21571,24 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -19601,7 +21618,7 @@ Appears In PersistentVolumeClaim
-

Patch

+

Patch

kubectl Command

@@ -19646,13 +21663,24 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -19682,7 +21710,7 @@ Appears In PersistentVolumeClaim
-

Delete

+

Delete

kubectl Command

@@ -19727,10 +21755,6 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -19743,8 +21767,8 @@ Appears In PersistentVolumeClaim -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -19756,6 +21780,21 @@ Appears In PersistentVolumeClaim +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -19771,7 +21810,7 @@ Appears In PersistentVolumeClaim
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -19812,10 +21851,6 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -19828,6 +21863,10 @@ Appears In PersistentVolumeClaim +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -19864,9 +21903,9 @@ Appears In PersistentVolumeClaim -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -19911,10 +21950,6 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -19927,6 +21962,10 @@ Appears In PersistentVolumeClaim +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -19951,7 +21990,7 @@ Appears In PersistentVolumeClaim -

List

+

List

kubectl Command

@@ -19992,10 +22031,6 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -20008,6 +22043,10 @@ Appears In PersistentVolumeClaim +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -20044,7 +22083,7 @@ Appears In PersistentVolumeClaim -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -20072,7 +22111,7 @@ Appears In PersistentVolumeClaim list or watch objects of kind PersistentVolumeClaim

HTTP Request

GET /api/v1/persistentvolumeclaims

-

Path Parameters

+

Query Parameters

@@ -20122,7 +22161,7 @@ Appears In PersistentVolumeClaim
-

Watch

+

Watch

kubectl Command

@@ -20160,14 +22199,6 @@ Appears In PersistentVolumeClaim -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the PersistentVolumeClaim @@ -20175,68 +22206,9 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List All Namespaces

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of PersistentVolumeClaim

-

HTTP Request

-

GET /api/v1/watch/persistentvolumeclaims

-

Path Parameters

+

Query Parameters

@@ -20286,9 +22258,87 @@ Appears In PersistentVolumeClaim
-

Status Operations

+

Watch List All Namespaces

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of PersistentVolumeClaim

+

HTTP Request

+

GET /api/v1/watch/persistentvolumeclaims

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Status Operations

See supported operations below...

-

Patch Status

+

Patch Status

kubectl Command

@@ -20333,13 +22383,24 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -20369,7 +22430,7 @@ Appears In PersistentVolumeClaim
-

Read Status

+

Read Status

kubectl Command

@@ -20414,6 +22475,17 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -20435,7 +22507,7 @@ Appears In PersistentVolumeClaim
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Replace Status

+

Replace Status

kubectl Command

@@ -20480,13 +22552,24 @@ Appears In PersistentVolumeClaim namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -20548,6 +22631,14 @@ Appears In StorageClassList + + + + + + + + @@ -20571,18 +22662,26 @@ Appears In StorageClassList + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
StorageClass array
Items is the list of StorageClasses
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -20610,7 +22709,7 @@ Appears In StorageClassList

create a StorageClass

HTTP Request

POST /apis/storage.k8s.io/v1beta1/storageclasses

-

Path Parameters

+

Query Parameters

@@ -20625,7 +22724,7 @@ Appears In StorageClassList
-

Query Parameters

+

Body Parameters

@@ -20655,7 +22754,7 @@ Appears In StorageClassList
-

Replace

+

Replace

kubectl Command

@@ -20696,13 +22795,24 @@ Appears In StorageClassList name name of the StorageClass + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -20732,7 +22842,7 @@ Appears In StorageClassList
-

Patch

+

Patch

kubectl Command

@@ -20773,13 +22883,24 @@ Appears In StorageClassList name name of the StorageClass + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -20809,7 +22930,7 @@ Appears In StorageClassList
-

Delete

+

Delete

kubectl Command

@@ -20850,10 +22971,6 @@ Appears In StorageClassList name name of the StorageClass - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -20866,8 +22983,8 @@ Appears In StorageClassList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -20879,6 +22996,21 @@ Appears In StorageClassList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -20894,7 +23026,7 @@ Appears In StorageClassList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -20922,7 +23054,7 @@ Appears In StorageClassList

delete collection of StorageClass

HTTP Request

DELETE /apis/storage.k8s.io/v1beta1/storageclasses

-

Path Parameters

+

Query Parameters

@@ -20935,17 +23067,6 @@ Appears In StorageClassList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -20983,9 +23104,9 @@ Appears In StorageClassList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -21026,10 +23147,6 @@ Appears In StorageClassList name name of the StorageClass - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -21042,6 +23159,10 @@ Appears In StorageClassList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -21066,7 +23187,7 @@ Appears In StorageClassList -

List

+

List

kubectl Command

@@ -21094,7 +23215,7 @@ Appears In StorageClassList

list or watch objects of kind StorageClass

HTTP Request

GET /apis/storage.k8s.io/v1beta1/storageclasses

-

Path Parameters

+

Query Parameters

@@ -21107,17 +23228,6 @@ Appears In StorageClassList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -21155,7 +23265,7 @@ Appears In StorageClassList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -21193,79 +23303,12 @@ Appears In StorageClassList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the StorageClass - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of StorageClass

-

HTTP Request

-

GET /apis/storage.k8s.io/v1beta1/watch/storageclasses

-

Path Parameters

+

Query Parameters

@@ -21346,9 +23389,101 @@ Appears In PodSpec + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
awsElasticBlockStore
AWSElasticBlockStoreVolumeSource
AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
azureDisk
AzureDiskVolumeSource
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
azureFile
AzureFileVolumeSource
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
cephfs
CephFSVolumeSource
CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
cinder
CinderVolumeSource
Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
configMap
ConfigMapVolumeSource
ConfigMap represents a configMap that should populate this volume
downwardAPI
DownwardAPIVolumeSource
DownwardAPI represents downward API about the pod that should populate this volume
emptyDir
EmptyDirVolumeSource
EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
fc
FCVolumeSource
FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
flexVolume
FlexVolumeSource
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
FlockerVolumeSource
Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
gcePersistentDisk
GCEPersistentDiskVolumeSource
GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
gitRepo
GitRepoVolumeSource
GitRepo represents a git repository at a particular revision.
glusterfs
GlusterfsVolumeSource
Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
hostPath
HostPathVolumeSource
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
iscsi
ISCSIVolumeSource
ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md
name
string
Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names
nfs
NFSVolumeSource
NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs
persistentVolumeClaim
PersistentVolumeClaimVolumeSource
PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
photonPersistentDisk
PhotonPersistentDiskVolumeSource
PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
quobyte
QuobyteVolumeSource
Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
rbd
RBDVolumeSource
RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
secret
SecretVolumeSource
Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets
vsphereVolume
VsphereVirtualDiskVolumeSource
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

METADATA

@@ -21395,6 +23530,10 @@ Appears In EventList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + count
integer The number of times this event has occurred. @@ -21407,6 +23546,10 @@ Appears In EventList The object that this event is about. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + lastTimestamp
Time The time at which the most recent occurrence of this event was recorded. @@ -21442,18 +23585,26 @@ Appears In EventList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Event array List of events +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -21494,13 +23645,24 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -21530,7 +23692,7 @@ Appears In EventList
-

Replace

+

Replace

kubectl Command

@@ -21575,13 +23737,24 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -21611,7 +23784,7 @@ Appears In EventList
-

Patch

+

Patch

kubectl Command

@@ -21656,13 +23829,24 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -21692,7 +23876,7 @@ Appears In EventList
-

Delete

+

Delete

kubectl Command

@@ -21737,10 +23921,6 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -21753,8 +23933,8 @@ Appears In EventList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -21766,6 +23946,21 @@ Appears In EventList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -21781,7 +23976,7 @@ Appears In EventList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -21822,10 +24017,6 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -21838,6 +24029,10 @@ Appears In EventList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -21874,9 +24069,9 @@ Appears In EventList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -21921,10 +24116,6 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -21937,6 +24128,10 @@ Appears In EventList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -21961,7 +24156,7 @@ Appears In EventList -

List

+

List

kubectl Command

@@ -22002,10 +24197,6 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -22018,6 +24209,10 @@ Appears In EventList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -22054,7 +24249,7 @@ Appears In EventList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -22082,7 +24277,7 @@ Appears In EventList

list or watch objects of kind Event

HTTP Request

GET /api/v1/events

-

Path Parameters

+

Query Parameters

@@ -22132,7 +24327,7 @@ Appears In EventList
-

Watch

+

Watch

kubectl Command

@@ -22170,14 +24365,6 @@ Appears In EventList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Event @@ -22185,6 +24372,25 @@ Appears In EventList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -22218,7 +24424,7 @@ Appears In EventList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -22246,7 +24452,7 @@ Appears In EventList

watch individual changes to a list of Event

HTTP Request

GET /api/v1/watch/events

-

Path Parameters

+

Query Parameters

@@ -22327,6 +24533,14 @@ Appears In LimitRangeList + + + + + + + + @@ -22364,18 +24578,26 @@ Appears In LimitRange + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
LimitRange array
Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -22416,13 +24638,24 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -22452,7 +24685,7 @@ Appears In LimitRange
-

Replace

+

Replace

kubectl Command

@@ -22497,13 +24730,24 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -22533,7 +24777,7 @@ Appears In LimitRange
-

Patch

+

Patch

kubectl Command

@@ -22578,13 +24822,24 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -22614,7 +24869,7 @@ Appears In LimitRange
-

Delete

+

Delete

kubectl Command

@@ -22659,10 +24914,6 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -22675,8 +24926,8 @@ Appears In LimitRange -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -22688,6 +24939,21 @@ Appears In LimitRange +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -22703,7 +24969,7 @@ Appears In LimitRange
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -22744,10 +25010,6 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -22760,6 +25022,10 @@ Appears In LimitRange +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -22796,9 +25062,9 @@ Appears In LimitRange -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -22843,10 +25109,6 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -22859,6 +25121,10 @@ Appears In LimitRange +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -22883,7 +25149,7 @@ Appears In LimitRange -

List

+

List

kubectl Command

@@ -22924,10 +25190,6 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -22940,6 +25202,10 @@ Appears In LimitRange +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -22976,7 +25242,7 @@ Appears In LimitRange -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -23004,7 +25270,7 @@ Appears In LimitRange

list or watch objects of kind LimitRange

HTTP Request

GET /api/v1/limitranges

-

Path Parameters

+

Query Parameters

@@ -23054,7 +25320,7 @@ Appears In LimitRange
-

Watch

+

Watch

kubectl Command

@@ -23092,14 +25358,6 @@ Appears In LimitRange -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the LimitRange @@ -23107,68 +25365,9 @@ Appears In LimitRange namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of LimitRange

-

HTTP Request

-

GET /api/v1/watch/namespaces/{namespace}/limitranges

-

Path Parameters

+

Query Parameters

@@ -23186,10 +25385,6 @@ Appears In LimitRange - - - - @@ -23222,7 +25417,7 @@ Appears In LimitRange
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -23250,7 +25445,7 @@ Appears In LimitRange

watch individual changes to a list of LimitRange

HTTP Request

GET /api/v1/watch/limitranges

-

Path Parameters

+

Query Parameters

@@ -23334,6 +25529,14 @@ Appears In HorizontalPodAutoscalerList + + + + + + + + @@ -23421,18 +25624,26 @@ Appears In HorizontalPodAutoscaler + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
HorizontalPodAutoscaler array
list of horizontal pod autoscaler objects.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -23473,13 +25684,24 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -23509,7 +25731,7 @@ Appears In HorizontalPodAutoscaler
-

Replace

+

Replace

kubectl Command

@@ -23554,13 +25776,24 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -23590,7 +25823,7 @@ Appears In HorizontalPodAutoscaler
-

Patch

+

Patch

kubectl Command

@@ -23635,13 +25868,24 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -23671,7 +25915,7 @@ Appears In HorizontalPodAutoscaler
-

Delete

+

Delete

kubectl Command

@@ -23716,10 +25960,6 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -23732,8 +25972,8 @@ Appears In HorizontalPodAutoscaler -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -23745,6 +25985,21 @@ Appears In HorizontalPodAutoscaler +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -23760,7 +26015,7 @@ Appears In HorizontalPodAutoscaler
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -23801,10 +26056,6 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -23817,6 +26068,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -23853,9 +26108,9 @@ Appears In HorizontalPodAutoscaler -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -23900,10 +26155,6 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -23916,6 +26167,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -23940,7 +26195,7 @@ Appears In HorizontalPodAutoscaler -

List

+

List

kubectl Command

@@ -23981,10 +26236,6 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -23997,6 +26248,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -24033,7 +26288,7 @@ Appears In HorizontalPodAutoscaler -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -24061,7 +26316,7 @@ Appears In HorizontalPodAutoscaler list or watch objects of kind HorizontalPodAutoscaler

HTTP Request

GET /apis/autoscaling/v1/horizontalpodautoscalers

-

Path Parameters

+

Query Parameters

@@ -24111,7 +26366,7 @@ Appears In HorizontalPodAutoscaler
-

Watch

+

Watch

kubectl Command

@@ -24149,14 +26404,6 @@ Appears In HorizontalPodAutoscaler -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the HorizontalPodAutoscaler @@ -24164,6 +26411,25 @@ Appears In HorizontalPodAutoscaler namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -24197,7 +26463,7 @@ Appears In HorizontalPodAutoscaler
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -24225,7 +26491,7 @@ Appears In HorizontalPodAutoscaler watch individual changes to a list of HorizontalPodAutoscaler

HTTP Request

GET /apis/autoscaling/v1/watch/horizontalpodautoscalers

-

Path Parameters

+

Query Parameters

@@ -24306,6 +26572,14 @@ Appears In PodTemplateList + + + + + + + + @@ -24347,18 +26621,26 @@ Appears In DaemonSetSpechttp://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
items
PodTemplate array
List of pod templates
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -24399,13 +26681,24 @@ Appears In DaemonSetSpec Query Parameters + + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -24435,7 +26728,7 @@ Appears In DaemonSetSpecReplace +

Replace

kubectl Command

@@ -24480,13 +26773,24 @@ Appears In
DaemonSetSpecQuery Parameters +
+ + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -24516,7 +26820,7 @@ Appears In DaemonSetSpecPatch +

Patch

kubectl Command

@@ -24561,13 +26865,24 @@ Appears In
DaemonSetSpecQuery Parameters +
+ + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -24597,7 +26912,7 @@ Appears In DaemonSetSpecDelete +

Delete

kubectl Command

@@ -24642,10 +26957,6 @@ Appears In
DaemonSetSpecQuery Parameters @@ -24658,8 +26969,8 @@ Appears In DaemonSetSpecDeleteOptions - + + @@ -24671,6 +26982,21 @@ Appears In DaemonSetSpecBody Parameters +
prettyIf 'true', then the output is pretty printed.
gracePeriodSeconds
+ + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -24686,7 +27012,7 @@ Appears In DaemonSetSpecDelete Collection +

Delete Collection

kubectl Command

@@ -24727,10 +27053,6 @@ Appears In
DaemonSetSpecQuery Parameters @@ -24743,6 +27065,10 @@ Appears In DaemonSetSpecDaemonSetSpecRead Operations +

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -24826,10 +27152,6 @@ Appears In
DaemonSetSpecQuery Parameters @@ -24842,6 +27164,10 @@ Appears In DaemonSetSpecDaemonSetSpecList +

List

kubectl Command

@@ -24907,10 +27233,6 @@ Appears In
DaemonSetSpecQuery Parameters @@ -24923,6 +27245,10 @@ Appears In DaemonSetSpecDaemonSetSpecList All Namespaces +

List All Namespaces

kubectl Command

@@ -24987,7 +27313,7 @@ Appears In
DaemonSetSpecHTTP Request

GET /api/v1/podtemplates

-

Path Parameters

+

Query Parameters

@@ -25037,7 +27363,7 @@ Appears In DaemonSetSpecWatch +

Watch

kubectl Command

@@ -25075,14 +27401,6 @@ Appears In
DaemonSetSpecDaemonSetSpecQuery Parameters +
+ + + + + + + + + + + + + + + @@ -25123,7 +27460,7 @@ Appears In DaemonSetSpecWatch List All Namespaces +

Watch List All Namespaces

kubectl Command

@@ -25151,7 +27488,7 @@ Appears In
DaemonSetSpecHTTP Request

GET /api/v1/watch/podtemplates

-

Path Parameters

+

Query Parameters

ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
@@ -25232,6 +27569,14 @@ Appears In PodDisruptionBudgetList + + + + + + + + @@ -25315,18 +27660,26 @@ Appears In PodDisruptionBudget + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
PodDisruptionBudget array
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -25367,13 +27720,24 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -25403,7 +27767,7 @@ Appears In PodDisruptionBudget
-

Replace

+

Replace

kubectl Command

@@ -25448,13 +27812,24 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -25484,7 +27859,7 @@ Appears In PodDisruptionBudget
-

Patch

+

Patch

kubectl Command

@@ -25529,13 +27904,24 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -25565,7 +27951,7 @@ Appears In PodDisruptionBudget
-

Delete

+

Delete

kubectl Command

@@ -25610,10 +27996,6 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -25626,8 +28008,8 @@ Appears In PodDisruptionBudget -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -25639,6 +28021,21 @@ Appears In PodDisruptionBudget +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -25654,7 +28051,7 @@ Appears In PodDisruptionBudget
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -25695,10 +28092,6 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -25711,6 +28104,10 @@ Appears In PodDisruptionBudget +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -25747,9 +28144,9 @@ Appears In PodDisruptionBudget -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -25794,10 +28191,6 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -25810,6 +28203,10 @@ Appears In PodDisruptionBudget +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -25834,7 +28231,7 @@ Appears In PodDisruptionBudget -

List

+

List

kubectl Command

@@ -25875,10 +28272,6 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -25891,6 +28284,10 @@ Appears In PodDisruptionBudget +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -25927,7 +28324,7 @@ Appears In PodDisruptionBudget -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -25955,7 +28352,7 @@ Appears In PodDisruptionBudget list or watch objects of kind PodDisruptionBudget

HTTP Request

GET /apis/policy/v1beta1/poddisruptionbudgets

-

Path Parameters

+

Query Parameters

@@ -26005,7 +28402,7 @@ Appears In PodDisruptionBudget
-

Watch

+

Watch

kubectl Command

@@ -26043,14 +28440,6 @@ Appears In PodDisruptionBudget -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the PodDisruptionBudget @@ -26058,68 +28447,9 @@ Appears In PodDisruptionBudget namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of PodDisruptionBudget

-

HTTP Request

-

GET /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets

-

Path Parameters

+

Query Parameters

@@ -26137,10 +28467,6 @@ Appears In PodDisruptionBudgetA selector to restrict the list of returned objects by their labels. Defaults to everything. - - - - @@ -26173,7 +28499,7 @@ Appears In PodDisruptionBudget
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -26201,7 +28527,7 @@ Appears In PodDisruptionBudget watch individual changes to a list of PodDisruptionBudget

HTTP Request

GET /apis/policy/v1beta1/watch/poddisruptionbudgets

-

Path Parameters

+

Query Parameters

@@ -26251,236 +28577,6 @@ Appears In PodDisruptionBudget
-

Status Operations

-

See supported operations below...

-

Patch Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

partially update status of the specified PodDisruptionBudget

-

HTTP Request

-

PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the PodDisruptionBudget
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Patch
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
PodDisruptionBudget
OK
-

Read Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

read status of the specified PodDisruptionBudget

-

HTTP Request

-

GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the PodDisruptionBudget
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
PodDisruptionBudget
OK
-

Replace Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

replace status of the specified PodDisruptionBudget

-

HTTP Request

-

PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the PodDisruptionBudget
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
PodDisruptionBudget
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
PodDisruptionBudget
OK

ThirdPartyResource v1beta1

@@ -26512,10 +28608,18 @@ Appears In ThirdPartyResourceList + + + + + + + + @@ -26535,10 +28639,18 @@ Appears In ThirdPartyResourceList + + + + + + + + @@ -26574,7 +28686,7 @@ Appears In ThirdPartyResourceList

create a ThirdPartyResource

HTTP Request

POST /apis/extensions/v1beta1/thirdpartyresources

-

Path Parameters

+

Query Parameters

apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
description
string
Description is the description of this object.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ThirdPartyResource array
Items is the list of ThirdPartyResources.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata.
@@ -26589,7 +28701,7 @@ Appears In ThirdPartyResourceList
-

Query Parameters

+

Body Parameters

@@ -26660,13 +28772,24 @@ Appears In ThirdPartyResourceList + +
name name of the ThirdPartyResource
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -26737,13 +28860,24 @@ Appears In ThirdPartyResourceList + +
name name of the ThirdPartyResource
+

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -26814,10 +28948,6 @@ Appears In ThirdPartyResourceList - - - -
name name of the ThirdPartyResource
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -26830,8 +28960,8 @@ Appears In ThirdPartyResourceList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -26843,6 +28973,21 @@ Appears In ThirdPartyResourceList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -26886,7 +29031,7 @@ Appears In ThirdPartyResourceList

delete collection of ThirdPartyResource

HTTP Request

DELETE /apis/extensions/v1beta1/thirdpartyresources

-

Path Parameters

+

Query Parameters

@@ -26899,17 +29044,6 @@ Appears In ThirdPartyResourceList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -26990,10 +29124,6 @@ Appears In ThirdPartyResourceList - - - -
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. name name of the ThirdPartyResource
prettyIf 'true', then the output is pretty printed.

Query Parameters

@@ -27006,6 +29136,10 @@ Appears In ThirdPartyResourceList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -27058,7 +29192,7 @@ Appears In ThirdPartyResourceList

list or watch objects of kind ThirdPartyResource

HTTP Request

GET /apis/extensions/v1beta1/thirdpartyresources

-

Path Parameters

+

Query Parameters

@@ -27071,17 +29205,6 @@ Appears In ThirdPartyResourceList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -27157,79 +29280,12 @@ Appears In ThirdPartyResourceList - - - - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
name name of the ThirdPartyResource
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of ThirdPartyResource

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/thirdpartyresources

-

Path Parameters

+

Query Parameters

@@ -27310,6 +29366,14 @@ Appears In ThirdPartyResourceList + + + + + + + + @@ -27319,9 +29383,9 @@ Appears In ThirdPartyResourceList
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -27359,19 +29423,41 @@ Appears In ThirdPartyResourceList -body
Binding - - - namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Binding

Response

@@ -27418,6 +29504,14 @@ Appears In CertificateSigningR + + + + + + + + @@ -27493,18 +29587,26 @@ Appears In CertificateSigningReque + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
CertificateSigningRequest array
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -27532,7 +29634,7 @@ Appears In
CertificateSigningReque

create a CertificateSigningRequest

HTTP Request

POST /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests

-

Path Parameters

+

Query Parameters

@@ -27547,7 +29649,7 @@ Appears In CertificateSigningReque
-

Query Parameters

+

Body Parameters

@@ -27577,7 +29679,7 @@ Appears In CertificateSigningReque
-

Replace

+

Replace

kubectl Command

@@ -27618,13 +29720,24 @@ Appears In
CertificateSigningReque name name of the CertificateSigningRequest + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -27654,7 +29767,7 @@ Appears In CertificateSigningReque
-

Patch

+

Patch

kubectl Command

@@ -27695,13 +29808,24 @@ Appears In
CertificateSigningReque name name of the CertificateSigningRequest + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -27731,7 +29855,7 @@ Appears In CertificateSigningReque
-

Delete

+

Delete

kubectl Command

@@ -27772,10 +29896,6 @@ Appears In
CertificateSigningReque name name of the CertificateSigningRequest - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -27788,8 +29908,8 @@ Appears In
CertificateSigningReque -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -27801,6 +29921,21 @@ Appears In CertificateSigningReque +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -27816,7 +29951,7 @@ Appears In CertificateSigningReque
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -27844,7 +29979,7 @@ Appears In
CertificateSigningReque

delete collection of CertificateSigningRequest

HTTP Request

DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests

-

Path Parameters

+

Query Parameters

@@ -27857,17 +29992,6 @@ Appears In CertificateSigningReque - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -27905,9 +30029,9 @@ Appears In CertificateSigningReque
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -27948,10 +30072,6 @@ Appears In
CertificateSigningReque name name of the CertificateSigningRequest - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -27964,6 +30084,10 @@ Appears In
CertificateSigningReque +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -27988,7 +30112,7 @@ Appears In CertificateSigningReque -

List

+

List

kubectl Command

@@ -28016,7 +30140,7 @@ Appears In
CertificateSigningReque

list or watch objects of kind CertificateSigningRequest

HTTP Request

GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests

-

Path Parameters

+

Query Parameters

@@ -28029,17 +30153,6 @@ Appears In CertificateSigningReque - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -28077,7 +30190,7 @@ Appears In CertificateSigningReque
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -28115,6 +30228,21 @@ Appears In
CertificateSigningReque +name +name of the CertificateSigningRequest + + + +

Query Parameters

+ + + + + + + + + @@ -28123,10 +30251,6 @@ Appears In CertificateSigningReque - - - - @@ -28190,6 +30314,14 @@ Appears In ClusterRoleList + + + + + + + + @@ -28209,18 +30341,26 @@ Appears In ClusterRoleList + + + + + + + +
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namename of the CertificateSigningRequest
pretty If 'true', then the output is pretty printed.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ClusterRole array
Items is a list of ClusterRoles
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -28248,7 +30388,7 @@ Appears In ClusterRoleList

create a ClusterRole

HTTP Request

POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles

-

Path Parameters

+

Query Parameters

@@ -28263,7 +30403,7 @@ Appears In ClusterRoleList
-

Query Parameters

+

Body Parameters

@@ -28293,7 +30433,7 @@ Appears In ClusterRoleList
-

Replace

+

Replace

kubectl Command

@@ -28334,13 +30474,24 @@ Appears In ClusterRoleList name name of the ClusterRole + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -28370,7 +30521,7 @@ Appears In ClusterRoleList
-

Patch

+

Patch

kubectl Command

@@ -28411,13 +30562,24 @@ Appears In ClusterRoleList name name of the ClusterRole + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -28447,7 +30609,7 @@ Appears In ClusterRoleList
-

Delete

+

Delete

kubectl Command

@@ -28488,10 +30650,6 @@ Appears In ClusterRoleList name name of the ClusterRole - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -28504,8 +30662,8 @@ Appears In ClusterRoleList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -28517,6 +30675,21 @@ Appears In ClusterRoleList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -28532,7 +30705,7 @@ Appears In ClusterRoleList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -28560,7 +30733,7 @@ Appears In ClusterRoleList

delete collection of ClusterRole

HTTP Request

DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles

-

Path Parameters

+

Query Parameters

@@ -28573,17 +30746,6 @@ Appears In ClusterRoleList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -28621,9 +30783,9 @@ Appears In ClusterRoleList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -28664,6 +30826,17 @@ Appears In ClusterRoleList name name of the ClusterRole + + +

Query Parameters

+ + + + + + + + @@ -28685,7 +30858,7 @@ Appears In ClusterRoleList
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

List

+

List

kubectl Command

@@ -28713,7 +30886,7 @@ Appears In ClusterRoleList

list or watch objects of kind ClusterRole

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles

-

Path Parameters

+

Query Parameters

@@ -28726,17 +30899,6 @@ Appears In ClusterRoleList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -28774,7 +30936,7 @@ Appears In ClusterRoleList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -28812,79 +30974,12 @@ Appears In ClusterRoleList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ClusterRole - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of ClusterRole

-

HTTP Request

-

GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles

-

Path Parameters

+

Query Parameters

@@ -28965,6 +31060,14 @@ Appears In ClusterRoleBindingList + + + + + + + + @@ -28988,18 +31091,26 @@ Appears In ClusterRoleBindingList + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ClusterRoleBinding array
Items is a list of ClusterRoleBindings
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -29027,7 +31138,7 @@ Appears In ClusterRoleBindingList

create a ClusterRoleBinding

HTTP Request

POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings

-

Path Parameters

+

Query Parameters

@@ -29042,7 +31153,7 @@ Appears In ClusterRoleBindingList
-

Query Parameters

+

Body Parameters

@@ -29072,7 +31183,7 @@ Appears In ClusterRoleBindingList
-

Replace

+

Replace

kubectl Command

@@ -29113,13 +31224,24 @@ Appears In ClusterRoleBindingList name name of the ClusterRoleBinding + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -29149,7 +31271,7 @@ Appears In ClusterRoleBindingList
-

Patch

+

Patch

kubectl Command

@@ -29190,13 +31312,24 @@ Appears In ClusterRoleBindingList name name of the ClusterRoleBinding + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -29226,7 +31359,7 @@ Appears In ClusterRoleBindingList
-

Delete

+

Delete

kubectl Command

@@ -29267,10 +31400,6 @@ Appears In ClusterRoleBindingList name name of the ClusterRoleBinding - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -29283,8 +31412,8 @@ Appears In ClusterRoleBindingList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -29296,6 +31425,21 @@ Appears In ClusterRoleBindingList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -29311,7 +31455,7 @@ Appears In ClusterRoleBindingList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -29339,7 +31483,7 @@ Appears In ClusterRoleBindingList

delete collection of ClusterRoleBinding

HTTP Request

DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings

-

Path Parameters

+

Query Parameters

@@ -29352,17 +31496,6 @@ Appears In ClusterRoleBindingList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -29400,9 +31533,9 @@ Appears In ClusterRoleBindingList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -29443,6 +31576,17 @@ Appears In ClusterRoleBindingList name name of the ClusterRoleBinding + + +

Query Parameters

+ + + + + + + + @@ -29464,7 +31608,7 @@ Appears In ClusterRoleBindingList
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

List

+

List

kubectl Command

@@ -29492,7 +31636,7 @@ Appears In ClusterRoleBindingList

list or watch objects of kind ClusterRoleBinding

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings

-

Path Parameters

+

Query Parameters

@@ -29505,17 +31649,6 @@ Appears In ClusterRoleBindingList - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -29553,7 +31686,7 @@ Appears In ClusterRoleBindingList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -29591,6 +31724,21 @@ Appears In ClusterRoleBindingList +name +name of the ClusterRoleBinding + + + +

Query Parameters

+ + + + + + + + + @@ -29599,8 +31747,82 @@ Appears In ClusterRoleBindingList - - + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namename of the ClusterRoleBindingprettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of ClusterRoleBinding

+

HTTP Request

+

GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings

+

Query Parameters

+ + + + + + + + + + + + + + + @@ -29666,10 +31888,18 @@ Appears In ComponentStatusList + + + + + + + + @@ -29685,18 +31915,26 @@ Appears In ComponentStatusList + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
conditions
ComponentCondition array
List of component conditions observed
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ComponentStatus array
List of ComponentStatus objects.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -29737,6 +31975,17 @@ Appears In ComponentStatusList name name of the ComponentStatus + + +

Query Parameters

+ + + + + + + + @@ -29758,7 +32007,7 @@ Appears In ComponentStatusList
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

List

+

List

kubectl Command

@@ -29786,7 +32035,7 @@ Appears In ComponentStatusList

list objects of kind ComponentStatus

HTTP Request

GET /api/v1/componentstatuses

-

Path Parameters

+

Query Parameters

@@ -29864,6 +32113,14 @@ Appears In ComponentStatusList + + + + + + + + @@ -29877,9 +32134,9 @@ Appears In ComponentStatusList
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -29917,19 +32174,41 @@ Appears In ComponentStatusList -body
LocalSubjectAccessReview - - - namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
LocalSubjectAccessReview

Response

@@ -29976,6 +32255,14 @@ Appears In NamespaceList + + + + + + + + @@ -30035,18 +32322,26 @@ Appears In Namespace + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Namespace array
Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -30074,7 +32369,7 @@ Appears In Namespace

create a Namespace

HTTP Request

POST /api/v1/namespaces

-

Path Parameters

+

Query Parameters

@@ -30089,7 +32384,7 @@ Appears In Namespace
-

Query Parameters

+

Body Parameters

@@ -30119,7 +32414,7 @@ Appears In Namespace
-

Replace

+

Replace

kubectl Command

@@ -30160,13 +32455,24 @@ Appears In Namespace name name of the Namespace + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -30196,7 +32502,7 @@ Appears In Namespace
-

Patch

+

Patch

kubectl Command

@@ -30237,13 +32543,24 @@ Appears In Namespace name name of the Namespace + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -30273,7 +32590,7 @@ Appears In Namespace
-

Delete

+

Delete

kubectl Command

@@ -30314,10 +32631,6 @@ Appears In Namespace name name of the Namespace - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -30330,8 +32643,8 @@ Appears In Namespace -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -30343,6 +32656,21 @@ Appears In Namespace +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -30358,7 +32686,7 @@ Appears In Namespace
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -30386,7 +32714,7 @@ Appears In Namespace

delete collection of Namespace

HTTP Request

DELETE /api/v1/namespaces

-

Path Parameters

+

Query Parameters

@@ -30399,17 +32727,6 @@ Appears In Namespace - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -30447,9 +32764,9 @@ Appears In Namespace
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -30490,10 +32807,6 @@ Appears In Namespace name name of the Namespace - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -30506,6 +32819,10 @@ Appears In Namespace +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -30530,7 +32847,7 @@ Appears In Namespace -

List

+

List

kubectl Command

@@ -30558,7 +32875,7 @@ Appears In Namespace

list or watch objects of kind Namespace

HTTP Request

GET /api/v1/namespaces

-

Path Parameters

+

Query Parameters

@@ -30571,17 +32888,6 @@ Appears In Namespace - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -30619,7 +32925,7 @@ Appears In Namespace
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -30657,6 +32963,21 @@ Appears In Namespace +name +name of the Namespace + + + +

Query Parameters

+ + + + + + + + + @@ -30665,10 +32986,6 @@ Appears In Namespace - - - - @@ -30732,6 +33049,14 @@ Appears In NodeList + + + + + + + + @@ -30839,18 +33164,26 @@ Appears In Node + + + + + + + +
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namename of the Namespace
pretty If 'true', then the output is pretty printed.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Node array
List of nodes
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -30878,7 +33211,7 @@ Appears In Node

create a Node

HTTP Request

POST /api/v1/nodes

-

Path Parameters

+

Query Parameters

@@ -30893,7 +33226,7 @@ Appears In Node
-

Query Parameters

+

Body Parameters

@@ -30923,7 +33256,7 @@ Appears In Node
-

Replace

+

Replace

kubectl Command

@@ -30964,13 +33297,24 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -31000,7 +33344,7 @@ Appears In Node
-

Patch

+

Patch

kubectl Command

@@ -31041,13 +33385,24 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -31077,7 +33432,7 @@ Appears In Node
-

Delete

+

Delete

kubectl Command

@@ -31118,10 +33473,6 @@ Appears In Node name name of the Node - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -31134,8 +33485,8 @@ Appears In Node -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -31147,6 +33498,21 @@ Appears In Node +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -31162,7 +33528,7 @@ Appears In Node
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -31190,7 +33556,7 @@ Appears In Node

delete collection of Node

HTTP Request

DELETE /api/v1/nodes

-

Path Parameters

+

Query Parameters

@@ -31203,17 +33569,6 @@ Appears In Node - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -31251,9 +33606,9 @@ Appears In Node
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -31294,10 +33649,6 @@ Appears In Node name name of the Node - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -31310,6 +33661,10 @@ Appears In Node +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -31334,7 +33689,7 @@ Appears In Node -

List

+

List

kubectl Command

@@ -31362,7 +33717,7 @@ Appears In Node

list or watch objects of kind Node

HTTP Request

GET /api/v1/nodes

-

Path Parameters

+

Query Parameters

@@ -31375,17 +33730,6 @@ Appears In Node - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -31423,7 +33767,7 @@ Appears In Node
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -31461,79 +33805,12 @@ Appears In Node -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Node - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of Node

-

HTTP Request

-

GET /api/v1/watch/nodes

-

Path Parameters

+

Query Parameters

@@ -31583,9 +33860,9 @@ Appears In Node
-

Proxy Operations

+

Proxy Operations

See supported operations below...

-

Create Connect Proxy

+

Create Connect Proxy

kubectl Command

@@ -31626,6 +33903,17 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + + @@ -31647,7 +33935,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Create Connect Proxy Path

+

Create Connect Proxy Path

kubectl Command

@@ -31692,6 +33980,17 @@ Appears In Node path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -31713,7 +34012,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Create Proxy

+

Create Proxy

kubectl Command

@@ -31771,7 +34070,7 @@ Appears In Node -

Create Proxy Path

+

Create Proxy Path

kubectl Command

@@ -31833,7 +34132,7 @@ Appears In Node -

Delete Connect Proxy

+

Delete Connect Proxy

kubectl Command

@@ -31874,6 +34173,17 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + + @@ -31895,7 +34205,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Delete Connect Proxy Path

+

Delete Connect Proxy Path

kubectl Command

@@ -31940,6 +34250,17 @@ Appears In Node path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -31961,7 +34282,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Delete Proxy

+

Delete Proxy

kubectl Command

@@ -32019,7 +34340,7 @@ Appears In Node -

Delete Proxy Path

+

Delete Proxy Path

kubectl Command

@@ -32081,7 +34402,7 @@ Appears In Node -

Get Connect Proxy

+

Get Connect Proxy

kubectl Command

@@ -32122,6 +34443,17 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + + @@ -32143,7 +34475,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Get Connect Proxy Path

+

Get Connect Proxy Path

kubectl Command

@@ -32188,6 +34520,17 @@ Appears In Node path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -32209,7 +34552,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Get Proxy

+

Get Proxy

kubectl Command

@@ -32267,7 +34610,7 @@ Appears In Node -

Get Proxy Path

+

Get Proxy Path

kubectl Command

@@ -32329,7 +34672,7 @@ Appears In Node -

Head Connect Proxy

+

Head Connect Proxy

kubectl Command

@@ -32370,6 +34713,17 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + + @@ -32391,7 +34745,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Head Connect Proxy Path

+

Head Connect Proxy Path

kubectl Command

@@ -32436,6 +34790,17 @@ Appears In Node path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -32457,7 +34822,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Replace Connect Proxy

+

Replace Connect Proxy

kubectl Command

@@ -32498,6 +34863,17 @@ Appears In Node name name of the Node + + +

Query Parameters

+ + + + + + + + @@ -32519,7 +34895,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Replace Connect Proxy Path

+

Replace Connect Proxy Path

kubectl Command

@@ -32564,6 +34940,17 @@ Appears In Node path path to the resource + + +

Query Parameters

+ + + + + + + + @@ -32585,7 +34972,7 @@ Appears In Node
ParameterDescription
path Path is the URL path to use for the current proxy request to node.
-

Replace Proxy

+

Replace Proxy

kubectl Command

@@ -32643,7 +35030,7 @@ Appears In Node -

Replace Proxy Path

+

Replace Proxy Path

kubectl Command

@@ -32741,6 +35128,14 @@ Appears In PersistentVolumeList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -32771,17 +35166,85 @@ Appears In PersistentVolume AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
AWSElasticBlockStoreVolumeSource +AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + + +azureDisk
AzureDiskVolumeSource +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + +azureFile
AzureFileVolumeSource +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + capacity
object A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
CephFSVolumeSource +CephFS represents a Ceph FS mount on the host that shares a pod's lifetime + + +cinder
CinderVolumeSource +Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + + claimRef
ObjectReference 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 +fc
FCVolumeSource +FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. + + +flexVolume
FlexVolumeSource +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
FlockerVolumeSource +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 + + +gcePersistentDisk
GCEPersistentDiskVolumeSource +GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + + +glusterfs
GlusterfsVolumeSource +Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md + + +hostPath
HostPathVolumeSource +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 + + +iscsi
ISCSIVolumeSource +ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. + + +nfs
NFSVolumeSource +NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + + persistentVolumeReclaimPolicy
string What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy + +photonPersistentDisk
PhotonPersistentDiskVolumeSource +PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine + + +quobyte
QuobyteVolumeSource +Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + + +rbd
RBDVolumeSource +RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md + + +vsphereVolume
VsphereVirtualDiskVolumeSource +VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine +

PersistentVolumeStatus v1

@@ -32820,18 +35283,26 @@ Appears In PersistentVolume +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
PersistentVolume array List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -32859,7 +35330,7 @@ Appears In PersistentVolume

create a PersistentVolume

HTTP Request

POST /api/v1/persistentvolumes

-

Path Parameters

+

Query Parameters

@@ -32874,7 +35345,7 @@ Appears In PersistentVolume
-

Query Parameters

+

Body Parameters

@@ -32904,7 +35375,7 @@ Appears In PersistentVolume
-

Replace

+

Replace

kubectl Command

@@ -32945,13 +35416,24 @@ Appears In PersistentVolume name name of the PersistentVolume + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -32981,7 +35463,7 @@ Appears In PersistentVolume
-

Patch

+

Patch

kubectl Command

@@ -33022,13 +35504,24 @@ Appears In PersistentVolume name name of the PersistentVolume + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -33058,7 +35551,7 @@ Appears In PersistentVolume
-

Delete

+

Delete

kubectl Command

@@ -33099,10 +35592,6 @@ Appears In PersistentVolume name name of the PersistentVolume - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -33115,8 +35604,8 @@ Appears In PersistentVolume -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -33128,6 +35617,21 @@ Appears In PersistentVolume +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -33143,7 +35647,7 @@ Appears In PersistentVolume
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -33171,7 +35675,7 @@ Appears In PersistentVolume

delete collection of PersistentVolume

HTTP Request

DELETE /api/v1/persistentvolumes

-

Path Parameters

+

Query Parameters

@@ -33184,17 +35688,6 @@ Appears In PersistentVolume - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -33232,9 +35725,9 @@ Appears In PersistentVolume
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -33275,10 +35768,6 @@ Appears In PersistentVolume name name of the PersistentVolume - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -33291,6 +35780,10 @@ Appears In PersistentVolume +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -33315,7 +35808,7 @@ Appears In PersistentVolume -

List

+

List

kubectl Command

@@ -33343,7 +35836,7 @@ Appears In PersistentVolume

list or watch objects of kind PersistentVolume

HTTP Request

GET /api/v1/persistentvolumes

-

Path Parameters

+

Query Parameters

@@ -33356,17 +35849,6 @@ Appears In PersistentVolume - -
pretty If 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - @@ -33404,7 +35886,7 @@ Appears In PersistentVolume
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
-

Watch

+

Watch

kubectl Command

@@ -33442,79 +35924,12 @@ Appears In PersistentVolume -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the PersistentVolume - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of PersistentVolume

-

HTTP Request

-

GET /api/v1/watch/persistentvolumes

-

Path Parameters

+

Query Parameters

@@ -33564,9 +35979,87 @@ Appears In PersistentVolume
-

Status Operations

+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of PersistentVolume

+

HTTP Request

+

GET /api/v1/watch/persistentvolumes

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Status Operations

See supported operations below...

-

Patch Status

+

Patch Status

kubectl Command

@@ -33607,13 +36100,24 @@ Appears In PersistentVolume name name of the PersistentVolume + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -33643,7 +36147,7 @@ Appears In PersistentVolume
-

Read Status

+

Read Status

kubectl Command

@@ -33684,6 +36188,17 @@ Appears In PersistentVolume name name of the PersistentVolume + + +

Query Parameters

+ + + + + + + + @@ -33705,7 +36220,7 @@ Appears In PersistentVolume
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Replace Status

+

Replace Status

kubectl Command

@@ -33746,13 +36261,24 @@ Appears In PersistentVolume name name of the PersistentVolume + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -33813,6 +36339,14 @@ Appears In ResourceQuotaList + + + + + + + + @@ -33880,18 +36414,26 @@ Appears In ResourceQuota + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ResourceQuota array
Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -33932,13 +36474,24 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -33968,7 +36521,7 @@ Appears In ResourceQuota
-

Replace

+

Replace

kubectl Command

@@ -34013,13 +36566,24 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -34049,7 +36613,7 @@ Appears In ResourceQuota
-

Patch

+

Patch

kubectl Command

@@ -34094,13 +36658,24 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -34130,7 +36705,7 @@ Appears In ResourceQuota
-

Delete

+

Delete

kubectl Command

@@ -34175,10 +36750,6 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -34191,8 +36762,8 @@ Appears In ResourceQuota -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -34204,6 +36775,21 @@ Appears In ResourceQuota +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -34219,7 +36805,7 @@ Appears In ResourceQuota
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -34260,10 +36846,6 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -34276,6 +36858,10 @@ Appears In ResourceQuota +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -34312,9 +36898,9 @@ Appears In ResourceQuota -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -34359,10 +36945,6 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -34375,6 +36957,10 @@ Appears In ResourceQuota +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -34399,7 +36985,7 @@ Appears In ResourceQuota -

List

+

List

kubectl Command

@@ -34440,10 +37026,6 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -34456,6 +37038,10 @@ Appears In ResourceQuota +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -34492,7 +37078,7 @@ Appears In ResourceQuota -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -34520,7 +37106,7 @@ Appears In ResourceQuota

list or watch objects of kind ResourceQuota

HTTP Request

GET /api/v1/resourcequotas

-

Path Parameters

+

Query Parameters

@@ -34570,7 +37156,7 @@ Appears In ResourceQuota
-

Watch

+

Watch

kubectl Command

@@ -34608,14 +37194,6 @@ Appears In ResourceQuota -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ResourceQuota @@ -34623,68 +37201,9 @@ Appears In ResourceQuota namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List All Namespaces

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of ResourceQuota

-

HTTP Request

-

GET /api/v1/watch/resourcequotas

-

Path Parameters

+

Query Parameters

@@ -34734,6 +37253,347 @@ Appears In ResourceQuota
+

Watch List All Namespaces

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of ResourceQuota

+

HTTP Request

+

GET /api/v1/watch/resourcequotas

+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Status Operations

+

See supported operations below...

+

Patch Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

partially update status of the specified ResourceQuota

+

HTTP Request

+

PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the ResourceQuota
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
Patch
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
ResourceQuota
OK
+

Read Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

read status of the specified ResourceQuota

+

HTTP Request

+

GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the ResourceQuota
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
ResourceQuota
OK
+

Replace Status

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

replace status of the specified ResourceQuota

+

HTTP Request

+

PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status

+

Path Parameters

+ + + + + + + + + + + + + + + + + +
ParameterDescription
namename of the ResourceQuota
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
ResourceQuota
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
ResourceQuota
OK

Role v1alpha1

@@ -34765,6 +37625,14 @@ Appears In RoleList + + + + + + + + @@ -34784,18 +37652,26 @@ Appears In RoleList + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Role array
Items is a list of Roles
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -34836,13 +37712,24 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -34872,7 +37759,7 @@ Appears In RoleList
-

Replace

+

Replace

kubectl Command

@@ -34917,13 +37804,24 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -34953,7 +37851,7 @@ Appears In RoleList
-

Patch

+

Patch

kubectl Command

@@ -34998,13 +37896,24 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -35034,7 +37943,7 @@ Appears In RoleList
-

Delete

+

Delete

kubectl Command

@@ -35079,10 +37988,6 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -35095,8 +38000,8 @@ Appears In RoleList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -35108,6 +38013,21 @@ Appears In RoleList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -35123,7 +38043,7 @@ Appears In RoleList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -35164,10 +38084,6 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -35180,6 +38096,10 @@ Appears In RoleList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -35216,9 +38136,9 @@ Appears In RoleList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -35263,6 +38183,17 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -35284,7 +38215,7 @@ Appears In RoleList
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

List

+

List

kubectl Command

@@ -35325,10 +38256,6 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -35341,6 +38268,10 @@ Appears In RoleList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -35377,7 +38308,7 @@ Appears In RoleList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -35405,7 +38336,7 @@ Appears In RoleList

list or watch objects of kind Role

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/roles

-

Path Parameters

+

Query Parameters

@@ -35455,7 +38386,7 @@ Appears In RoleList
-

Watch

+

Watch

kubectl Command

@@ -35493,14 +38424,6 @@ Appears In RoleList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the Role @@ -35508,6 +38431,25 @@ Appears In RoleList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -35541,7 +38483,100 @@ Appears In RoleList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List

+
+

kubectl Command

+
+

+Coming Soon
+
+
+

curl Command (requires kubectl proxy to be running)

+
+

+Coming Soon
+
+
+

Output

+
+

+Coming Soon
+
+
+

Response Body

+
+

+Coming Soon
+
+

watch individual changes to a list of Role

+

HTTP Request

+

GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles

+

Path Parameters

+ + + + + + + + + + + + + +
ParameterDescription
namespaceobject name and auth scope, such as for teams and projects
+

Query Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
prettyIf 'true', then the output is pretty printed.
resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
timeoutSecondsTimeout for the list/watch call.
watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
+

Response

+ + + + + + + + + + + + + +
CodeDescription
200
Event
OK
+

Watch List All Namespaces

kubectl Command

@@ -35569,7 +38604,7 @@ Appears In RoleList

watch individual changes to a list of Role

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/roles

-

Path Parameters

+

Query Parameters

@@ -35650,6 +38685,14 @@ Appears In RoleBindingList + + + + + + + + @@ -35673,18 +38716,26 @@ Appears In RoleBindingList + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
RoleBinding array
Items is a list of RoleBindings
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata.
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -35725,13 +38776,24 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -35761,7 +38823,7 @@ Appears In RoleBindingList
-

Replace

+

Replace

kubectl Command

@@ -35806,13 +38868,24 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -35842,7 +38915,7 @@ Appears In RoleBindingList
-

Patch

+

Patch

kubectl Command

@@ -35887,13 +38960,24 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -35923,7 +39007,7 @@ Appears In RoleBindingList
-

Delete

+

Delete

kubectl Command

@@ -35968,10 +39052,6 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -35984,8 +39064,8 @@ Appears In RoleBindingList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -35997,6 +39077,21 @@ Appears In RoleBindingList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -36012,7 +39107,7 @@ Appears In RoleBindingList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -36053,10 +39148,6 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -36069,6 +39160,10 @@ Appears In RoleBindingList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -36105,9 +39200,9 @@ Appears In RoleBindingList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -36152,6 +39247,17 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + @@ -36173,7 +39279,7 @@ Appears In RoleBindingList
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

List

+

List

kubectl Command

@@ -36214,10 +39320,6 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -36230,6 +39332,10 @@ Appears In RoleBindingList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -36266,7 +39372,7 @@ Appears In RoleBindingList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -36294,7 +39400,7 @@ Appears In RoleBindingList

list or watch objects of kind RoleBinding

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/rolebindings

-

Path Parameters

+

Query Parameters

@@ -36344,7 +39450,7 @@ Appears In RoleBindingList
-

Watch

+

Watch

kubectl Command

@@ -36382,14 +39488,6 @@ Appears In RoleBindingList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the RoleBinding @@ -36397,6 +39495,25 @@ Appears In RoleBindingList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -36430,7 +39547,7 @@ Appears In RoleBindingList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List

+

Watch List

kubectl Command

@@ -36468,6 +39585,21 @@ Appears In RoleBindingList +namespace +object name and auth scope, such as for teams and projects + + + +

Query Parameters

+ + + + + + + + + @@ -36476,10 +39608,6 @@ Appears In RoleBindingList - - - - @@ -36512,7 +39640,7 @@ Appears In RoleBindingList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -36540,7 +39668,7 @@ Appears In RoleBindingList

watch individual changes to a list of RoleBinding

HTTP Request

GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings

-

Path Parameters

+

Query Parameters

@@ -36618,6 +39746,14 @@ Appears In RoleBindingList + + + + + + + + @@ -36653,9 +39789,9 @@ Appears In SelfSubjectAccessReview
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -36683,7 +39819,22 @@ Appears In SelfSubjectAccessReviewcreate a SelfSubjectAccessReview

HTTP Request

POST /apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews

-

Path Parameters

+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

@@ -36696,10 +39847,6 @@ Appears In SelfSubjectAccessReviewbody
SelfSubjectAccessReview - - - -
prettyIf 'true', then the output is pretty printed.

Response

@@ -36748,10 +39895,18 @@ Appears In ServiceAccountList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + imagePullSecrets
LocalObjectReference array 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 +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -36771,18 +39926,26 @@ Appears In ServiceAccountList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ServiceAccount array List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -36823,13 +39986,24 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -36859,7 +40033,7 @@ Appears In ServiceAccountList
-

Replace

+

Replace

kubectl Command

@@ -36904,13 +40078,24 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -36940,7 +40125,7 @@ Appears In ServiceAccountList
-

Patch

+

Patch

kubectl Command

@@ -36985,13 +40170,24 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -37021,7 +40217,7 @@ Appears In ServiceAccountList
-

Delete

+

Delete

kubectl Command

@@ -37066,10 +40262,6 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -37082,8 +40274,8 @@ Appears In ServiceAccountList -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -37095,6 +40287,21 @@ Appears In ServiceAccountList +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -37110,7 +40317,7 @@ Appears In ServiceAccountList
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -37151,10 +40358,6 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -37167,6 +40370,10 @@ Appears In ServiceAccountList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -37203,9 +40410,9 @@ Appears In ServiceAccountList -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -37250,10 +40457,6 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -37266,6 +40469,10 @@ Appears In ServiceAccountList +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -37290,7 +40497,7 @@ Appears In ServiceAccountList -

List

+

List

kubectl Command

@@ -37331,10 +40538,6 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -37347,6 +40550,10 @@ Appears In ServiceAccountList +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -37383,7 +40590,7 @@ Appears In ServiceAccountList -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -37411,7 +40618,7 @@ Appears In ServiceAccountList

list or watch objects of kind ServiceAccount

HTTP Request

GET /api/v1/serviceaccounts

-

Path Parameters

+

Query Parameters

@@ -37461,7 +40668,7 @@ Appears In ServiceAccountList
-

Watch

+

Watch

kubectl Command

@@ -37499,14 +40706,6 @@ Appears In ServiceAccountList -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the ServiceAccount @@ -37514,6 +40713,25 @@ Appears In ServiceAccountList namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -37547,7 +40765,7 @@ Appears In ServiceAccountList
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List

+

Watch List

kubectl Command

@@ -37585,6 +40803,21 @@ Appears In ServiceAccountList +namespace +object name and auth scope, such as for teams and projects + + + +

Query Parameters

+ + + + + + + + + @@ -37593,10 +40826,6 @@ Appears In ServiceAccountList - - - - @@ -37629,7 +40858,7 @@ Appears In ServiceAccountList
ParameterDescription
fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
A selector to restrict the list of returned objects by their labels. Defaults to everything.
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -37657,7 +40886,7 @@ Appears In ServiceAccountList

watch individual changes to a list of ServiceAccount

HTTP Request

GET /api/v1/watch/serviceaccounts

-

Path Parameters

+

Query Parameters

@@ -37735,6 +40964,14 @@ Appears In ServiceAccountList + + + + + + + + @@ -37808,9 +41045,9 @@ Appears In LocalSubjectAccessReview<
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -37838,7 +41075,22 @@ Appears In
LocalSubjectAccessReview<

create a SubjectAccessReview

HTTP Request

POST /apis/authorization.k8s.io/v1beta1/subjectaccessreviews

-

Path Parameters

+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

@@ -37851,10 +41103,6 @@ Appears In LocalSubjectAccessReview< - - - -
body
SubjectAccessReview
prettyIf 'true', then the output is pretty printed.

Response

@@ -37900,6 +41148,14 @@ Appears In
LocalSubjectAccessReview< +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -37957,9 +41213,9 @@ Appears In TokenReview -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -37987,7 +41243,22 @@ Appears In TokenReview

create a TokenReview

HTTP Request

POST /apis/authentication.k8s.io/v1beta1/tokenreviews

-

Path Parameters

+

Query Parameters

+ + + + + + + + + + + + + +
ParameterDescription
prettyIf 'true', then the output is pretty printed.
+

Body Parameters

@@ -38000,10 +41271,6 @@ Appears In TokenReview - - - -
body
TokenReview
prettyIf 'true', then the output is pretty printed.

Response

@@ -38051,6 +41318,14 @@ Appears In NetworkPolicyList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -38092,18 +41367,26 @@ Appears In NetworkPolicy +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
NetworkPolicy array Items is a list of schema objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -38144,13 +41427,24 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -38180,7 +41474,7 @@ Appears In NetworkPolicy
-

Replace

+

Replace

kubectl Command

@@ -38225,13 +41519,24 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -38261,7 +41566,7 @@ Appears In NetworkPolicy
-

Patch

+

Patch

kubectl Command

@@ -38306,13 +41611,24 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -38342,7 +41658,7 @@ Appears In NetworkPolicy
-

Delete

+

Delete

kubectl Command

@@ -38387,10 +41703,6 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -38403,8 +41715,8 @@ Appears In NetworkPolicy -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -38416,6 +41728,21 @@ Appears In NetworkPolicy +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -38431,7 +41758,7 @@ Appears In NetworkPolicy
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -38472,10 +41799,6 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -38488,6 +41811,10 @@ Appears In NetworkPolicy +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -38524,9 +41851,9 @@ Appears In NetworkPolicy -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -38571,10 +41898,6 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -38587,6 +41910,10 @@ Appears In NetworkPolicy +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -38611,7 +41938,7 @@ Appears In NetworkPolicy -

List

+

List

kubectl Command

@@ -38652,10 +41979,6 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -38668,6 +41991,10 @@ Appears In NetworkPolicy +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -38704,7 +42031,7 @@ Appears In NetworkPolicy -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -38732,7 +42059,7 @@ Appears In NetworkPolicy

list or watch objects of kind NetworkPolicy

HTTP Request

GET /apis/extensions/v1beta1/networkpolicies

-

Path Parameters

+

Query Parameters

@@ -38782,7 +42109,7 @@ Appears In NetworkPolicy
-

Watch

+

Watch

kubectl Command

@@ -38820,14 +42147,6 @@ Appears In NetworkPolicy -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the NetworkPolicy @@ -38835,6 +42154,25 @@ Appears In NetworkPolicy namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + + + + + + + + + + @@ -38868,7 +42206,7 @@ Appears In NetworkPolicy
ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -38896,7 +42234,7 @@ Appears In NetworkPolicy

watch individual changes to a list of NetworkPolicy

HTTP Request

GET /apis/extensions/v1beta1/watch/networkpolicies

-

Path Parameters

+

Query Parameters

@@ -38978,6 +42316,14 @@ Appears In APIGroupList + + + + + + + + @@ -39100,6 +42446,14 @@ Appears In ThirdPartyResource + + + + + + + + @@ -39109,6 +42463,54 @@ Appears In ThirdPartyResource
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
name
string
name is the name of the group.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
serverAddressByClientCIDRs
ServerAddressByClientCIDR array
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.
+

AWSElasticBlockStoreVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AWSElasticBlockStoreVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
partition
integer
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
readOnly
boolean
Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
volumeID
string
Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

AttachedVolume v1

@@ -39148,6 +42550,100 @@ Appears In NodeStatus
+

AzureDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AzureDiskVolumeSource
+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
cachingMode
string
Host Caching mode: None, Read Only, Read Write.
diskName
string
The Name of the data disk in the blob storage
diskURI
string
The URI the data disk in the blob storage
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
readOnly
boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+

AzureFileVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AzureFileVolumeSource
+

AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
readOnly
boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secretName
string
the name of secret that contains Azure Storage Account Name and Key
shareName
string
Share Name

CPUTargetUtilization v1beta1

@@ -39221,6 +42717,61 @@ Appears In SecurityContext
+

CephFSVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1CephFSVolumeSource
+

Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
monitors
string array
Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
path
string
Optional: Used as the mounted root, rather than the full Ceph tree, default is /
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
secretFile
string
Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
secretRef
LocalObjectReference
Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
user
string
Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

CertificateSigningRequestCondition v1alpha1

@@ -39267,6 +42818,49 @@ Appears In CertificateSigni
+

CinderVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1CinderVolumeSource
+

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.

+
+ + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
volumeID
string
volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

ComponentCondition v1

@@ -39347,6 +42941,54 @@ Appears In EnvVarSource + + + + + +
key
string
The key to select.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
+

ConfigMapVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1ConfigMapVolumeSource
+

Adapts a ConfigMap into a volume.

+

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.

+ + + + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
KeyToPath array
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. Paths must be relative and may not contain the '..' path or start with '..'.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

ContainerImage v1

@@ -39723,10 +43365,18 @@ Appears In Eviction +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + gracePeriodSeconds
integer The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + orphanDependents
boolean Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. @@ -39791,6 +43441,127 @@ Appears In DeploymentStatus +

DownwardAPIVolumeFile v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1DownwardAPIVolumeFile
+

DownwardAPIVolumeFile represents information to create the file containing the pod field

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fieldRef
ObjectFieldSelector
Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.
mode
integer
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
path
string
Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'
resourceFieldRef
ResourceFieldSelector
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
+

DownwardAPIVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1DownwardAPIVolumeSource
+

DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
DownwardAPIVolumeFile array
Items is a list of downward API volume file
+

EmptyDirVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1EmptyDirVolumeSource
+

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + +
FieldDescription
medium
string
What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

EndpointAddress v1

@@ -40087,10 +43858,18 @@ Appears In Event + + + + + + + + @@ -40115,7 +43894,7 @@ Appears In Event
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
deleteOptions
DeleteOptions
DeleteOptions may be provided
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
ObjectMeta describes the pod that is being evicted.

ExecAction describes a "run in container" action.

+Appears In Handler Probe @@ -40132,6 +43911,277 @@ Appears In Handler
+

FCVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FCVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
lun
integer
Required: FC target lun number
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
targetWWNs
string array
Required: FC target worldwide names (WWNs)
+

FlexVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FlexVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
driver
string
Driver is the name of the driver to use for this volume.
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
options
object
Optional: Extra command options if any.
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secretRef
LocalObjectReference
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.
+

FlockerVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FlockerVolumeSource
+

Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
datasetName
string
Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated
datasetUUID
string
UUID of the dataset. This is unique identifier of a Flocker dataset
+

GCEPersistentDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GCEPersistentDiskVolumeSource
+

Represents a Persistent Disk resource in Google Compute Engine.

+

A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
partition
integer
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
pdName
string
Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
+

GitRepoVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GitRepoVolumeSource
+

Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
directory
string
Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
repository
string
Repository URL
revision
string
Commit hash for the specified revision.
+

GlusterfsVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GlusterfsVolumeSource
+

Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
endpoints
string
EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
path
string
Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
readOnly
boolean
ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

GroupVersionForDiscovery unversioned

@@ -40190,7 +44240,7 @@ Appears In APIGroup

HTTPGetAction describes an action based on HTTP Get requests.

+Appears In Handler Probe @@ -40261,6 +44311,80 @@ Appears In HTTPGetAction
+

HTTPIngressPath v1beta1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1beta1HTTPIngressPath
+

HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
backend
IngressBackend
Backend defines the referenced service endpoint to which the traffic will be forwarded to.
path
string
Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.
+

HTTPIngressRuleValue v1beta1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1beta1HTTPIngressRuleValue
+

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 '#'.

+ + + + + + + + + + + + + + + +
FieldDescription
paths
HTTPIngressPath array
A collection of paths that map requests to backends.

Handler v1

@@ -40304,6 +44428,96 @@ Appears In Lifecycle
+

HostPathVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1HostPathVolumeSource
+

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + +
FieldDescription
path
string
Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
+

ISCSIVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1ISCSIVolumeSource
+

Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi
iqn
string
Target iSCSI Qualified Name.
iscsiInterface
string
Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
lun
integer
iSCSI target lun number.
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
targetPortal
string
iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

Info version

@@ -40387,7 +44601,7 @@ Appears In Lifecycle

IngressBackend describes all endpoints for a given service and port.

+Appears In HTTPIngressPath IngressSpec @@ -40440,6 +44654,10 @@ Appears In IngressSpec + + + +
host
string
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.
http
HTTPIngressRuleValue

IngressTLS v1beta1

@@ -40610,6 +44828,49 @@ Appears In CronJobSpec +

KeyToPath v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1KeyToPath
+

Maps a string key to a path within a volume.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
key
string
The key to project.
mode
integer
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
path
string
The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

LabelSelector unversioned

@@ -40918,7 +45179,7 @@ Appears In IngressStatus -Appears In PodSpecServiceAccount +Appears In CephFSVolumeSourceFlexVolumeSourcePodSpecRBDVolumeSourceServiceAccount
@@ -40934,6 +45195,49 @@ Appears In PodSpecServ
+

NFSVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1NFSVolumeSource
+

Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

+
+ + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
path
string
Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs
readOnly
boolean
ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs
server
string
Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

NetworkPolicyIngressRule v1beta1

@@ -41307,7 +45611,7 @@ Appears In SelfSubjectAccessRevi

ObjectFieldSelector selects an APIVersioned field of an object.

+Appears In DownwardAPIVolumeFile EnvVarSource @@ -41559,6 +45863,84 @@ Appears In ObjectMeta
+

PersistentVolumeClaimVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1PersistentVolumeClaimVolumeSource
+

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).

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
claimName
string
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
readOnly
boolean
Will force the ReadOnly setting in VolumeMounts. Default false.
+

PhotonPersistentDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1PhotonPersistentDiskVolumeSource
+

Represents a Photon Controller persistent disk resource.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
pdID
string
ID that identifies Photon Controller persistent disk

PodCondition v1

@@ -41785,10 +46167,18 @@ Appears In Container + + + + + + + + @@ -41801,6 +46191,10 @@ Appears In Container + + + + @@ -41839,6 +46233,120 @@ Appears In ResourceFieldSelector
exec
ExecAction
One and only one of the following should be specified. Exec specifies the action to take.
failureThreshold
integer
Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
httpGet
HTTPGetAction
HTTPGet specifies the http request to perform.
initialDelaySeconds
integer
Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
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.
tcpSocket
TCPSocketAction
TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
timeoutSeconds
integer
Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
+

QuobyteVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1QuobyteVolumeSource
+

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
group
string
Group to map volume access to Default is no group
readOnly
boolean
ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.
registry
string
Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes
user
string
User to map volume access to Defaults to serivceaccount user
volume
string
Volume is a string that references an already created Quobyte volume by name.
+

RBDVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1RBDVolumeSource
+

Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd
image
string
The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
keyring
string
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
monitors
string array
A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
pool
string
The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
secretRef
LocalObjectReference
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
user
string
The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

RawExtension runtime

@@ -42076,7 +46584,7 @@ Appears In SelfSubjectAccessRevi

ResourceFieldSelector represents container resources (cpu, memory) and their output format

+Appears In DownwardAPIVolumeFile EnvVarSource @@ -42292,6 +46800,14 @@ Appears In PodSecurityContexthttp://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + + + + + @@ -42338,6 +46854,54 @@ Appears In EnvVarSource + + + + + +
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.
key
string
The key of the secret to select from. Must be a valid secret key.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
+

SecretVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1SecretVolumeSource
+

Adapts a Secret into a volume.

+

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.

+ + + + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
KeyToPath array
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. Paths must be relative and may not contain the '..' path or start with '..'.
secretName
string
Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

SecurityContext v1

@@ -42512,6 +47076,10 @@ Appears In ServiceSpec +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + code
integer Suggested HTTP return code for this status, 0 if not set. @@ -42520,6 +47088,10 @@ Appears In ServiceSpec 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. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + message
string A human-readable description of the status of this operation. @@ -42744,7 +47316,7 @@ Appears In HorizontalPodAutoscal

TCPSocketAction describes an action based on opening a socket

+Appears In Handler Probe @@ -42887,6 +47459,45 @@ Appears In Container
+

VsphereVirtualDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1VsphereVirtualDiskVolumeSource
+

Represents a vSphere volume resource.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
volumePath
string
Path that identifies vSphere volume vmdk

OLD API VERSIONS

This section contains older versions of resources shown above.


@@ -42963,6 +47574,14 @@ Appears In HorizontalPodAutoscale +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -43050,18 +47669,26 @@ Appears In HorizontalPodAutoscaler +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
HorizontalPodAutoscaler array list of horizontal pod autoscaler objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. -

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -43102,13 +47729,24 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -43138,7 +47776,7 @@ Appears In HorizontalPodAutoscaler
-

Replace

+

Replace

kubectl Command

@@ -43183,13 +47821,24 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -43219,7 +47868,7 @@ Appears In HorizontalPodAutoscaler
-

Patch

+

Patch

kubectl Command

@@ -43264,13 +47913,24 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -43300,7 +47960,7 @@ Appears In HorizontalPodAutoscaler
-

Delete

+

Delete

kubectl Command

@@ -43345,10 +48005,6 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -43361,8 +48017,8 @@ Appears In HorizontalPodAutoscaler -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -43374,6 +48030,21 @@ Appears In HorizontalPodAutoscaler +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -43389,7 +48060,7 @@ Appears In HorizontalPodAutoscaler
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -43430,10 +48101,6 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -43446,6 +48113,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -43482,9 +48153,9 @@ Appears In HorizontalPodAutoscaler -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -43529,10 +48200,6 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -43545,6 +48212,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -43569,7 +48240,7 @@ Appears In HorizontalPodAutoscaler -

List

+

List

kubectl Command

@@ -43610,10 +48281,6 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -43626,6 +48293,10 @@ Appears In HorizontalPodAutoscaler +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -43662,7 +48333,7 @@ Appears In HorizontalPodAutoscaler -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -43690,7 +48361,7 @@ Appears In HorizontalPodAutoscalerlist or watch objects of kind HorizontalPodAutoscaler

HTTP Request

GET /apis/extensions/v1beta1/horizontalpodautoscalers

-

Path Parameters

+

Query Parameters

@@ -43740,7 +48411,7 @@ Appears In HorizontalPodAutoscaler
-

Watch

+

Watch

kubectl Command

@@ -43778,14 +48449,6 @@ Appears In HorizontalPodAutoscaler -fieldSelector -A selector to restrict the list of returned objects by their fields. Defaults to everything. - - -labelSelector -A selector to restrict the list of returned objects by their labels. Defaults to everything. - - name name of the HorizontalPodAutoscaler @@ -43793,68 +48456,9 @@ Appears In HorizontalPodAutoscalernamespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. - - -resourceVersion -When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. - - -timeoutSeconds -Timeout for the list/watch call. - - -watch -Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - -

Response

- - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of HorizontalPodAutoscaler

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers

-

Path Parameters

+

Query Parameters

@@ -43872,10 +48476,6 @@ Appears In HorizontalPodAutoscalerA selector to restrict the list of returned objects by their labels. Defaults to everything. - - - - @@ -43908,7 +48508,7 @@ Appears In HorizontalPodAutoscaler
namespaceobject name and auth scope, such as for teams and projects
pretty If 'true', then the output is pretty printed.
-

Watch List All Namespaces

+

Watch List All Namespaces

kubectl Command

@@ -43936,7 +48536,7 @@ Appears In HorizontalPodAutoscalerwatch individual changes to a list of HorizontalPodAutoscaler

HTTP Request

GET /apis/extensions/v1beta1/watch/horizontalpodautoscalers

-

Path Parameters

+

Query Parameters

@@ -43986,236 +48586,6 @@ Appears In HorizontalPodAutoscaler
-

Status Operations

-

See supported operations below...

-

Patch Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

partially update status of the specified HorizontalPodAutoscaler

-

HTTP Request

-

PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the HorizontalPodAutoscaler
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Patch
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
HorizontalPodAutoscaler
OK
-

Read Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

read status of the specified HorizontalPodAutoscaler

-

HTTP Request

-

GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the HorizontalPodAutoscaler
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
HorizontalPodAutoscaler
OK
-

Replace Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

replace status of the specified HorizontalPodAutoscaler

-

HTTP Request

-

PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the HorizontalPodAutoscaler
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
HorizontalPodAutoscaler
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
HorizontalPodAutoscaler
OK

Job v1beta1

@@ -44250,6 +48620,14 @@ Appears In JobList + + + + + + + + @@ -44349,18 +48727,26 @@ Appears In Job + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Job array
Items is the list of Job.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -44483,13 +48869,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -44519,7 +48916,7 @@ spec:
-

Replace

+

Replace

kubectl Command

@@ -44564,13 +48961,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -44600,7 +49008,7 @@ spec:
-

Patch

+

Patch

kubectl Command

@@ -44645,13 +49053,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -44681,7 +49100,7 @@ spec:
-

Delete

+

Delete

kubectl Command

@@ -44736,10 +49155,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -44752,8 +49167,8 @@ orphanDependents: false -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -44765,6 +49180,21 @@ orphanDependents: false +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -44780,7 +49210,7 @@ orphanDependents: false
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -44821,10 +49251,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -44837,6 +49263,10 @@ orphanDependents: false +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -44873,9 +49303,9 @@ orphanDependents: false -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -45031,10 +49461,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -45047,6 +49473,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -45071,7 +49501,7 @@ $ curl -X GET http:// -

List

+

List

kubectl Command

@@ -45239,10 +49669,6 @@ $ kubectl get job -o json namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -45255,6 +49681,10 @@ $ kubectl get job -o json +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -45291,7 +49721,7 @@ $ kubectl get job -o json -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -45319,7 +49749,7 @@ $ kubectl get job -o json

list or watch objects of kind Job

HTTP Request

GET /apis/extensions/v1beta1/jobs

-

Path Parameters

+

Query Parameters

@@ -45369,7 +49799,7 @@ $ kubectl get job -o json
-

Watch

+

Watch

kubectl Command

@@ -45528,14 +49958,6 @@ $ kubectl get job example-job get job example-job Response - - - - - - - - - - - - - -
CodeDescription
200
Event
OK
-

Watch List

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

watch individual changes to a list of Job

-

HTTP Request

-

GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs

-

Path Parameters

+

Query Parameters

@@ -45622,10 +49985,6 @@ $ kubectl get job example-job get job example-job Watch List All Namespaces +

Watch List All Namespaces

kubectl Command

@@ -45686,7 +50045,7 @@ $ kubectl get job example-job HTTP Request

GET /apis/extensions/v1beta1/watch/jobs

-

Path Parameters

+

Query Parameters

@@ -45736,236 +50095,6 @@ $ kubectl get job example-job Status Operations -

See supported operations below...

-

Patch Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

partially update status of the specified Job

-

HTTP Request

-

PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

-
- - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Patch
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK
-

Read Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

read status of the specified Job

-

HTTP Request

-

GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK
-

Replace Status

-
-

kubectl Command

-
-

-Coming Soon
-
-
-

curl Command (requires kubectl proxy to be running)

-
-

-Coming Soon
-
-
-

Output

-
-

-Coming Soon
-
-
-

Response Body

-
-

-Coming Soon
-
-

replace status of the specified Job

-

HTTP Request

-

PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

-

Path Parameters

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
namename of the Job
namespaceobject name and auth scope, such as for teams and projects
prettyIf 'true', then the output is pretty printed.
-

Query Parameters

- - - - - - - - - - - - - -
ParameterDescription
body
Job
-

Response

- - - - - - - - - - - - - -
CodeDescription
200
Job
OK

Job v2alpha1

@@ -46000,6 +50129,14 @@ Appears In JobList + + + + + + + + @@ -46099,18 +50236,26 @@ Appears In Job + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Job array
Items is the list of Job.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
-

Write Operations

+

Write Operations

See supported operations below...

-

Create

+

Create

kubectl Command

@@ -46233,13 +50378,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -46269,7 +50425,7 @@ spec:
-

Replace

+

Replace

kubectl Command

@@ -46314,13 +50470,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -46350,7 +50517,7 @@ spec:
-

Patch

+

Patch

kubectl Command

@@ -46395,13 +50562,24 @@ spec: namespace object name and auth scope, such as for teams and projects + + +

Query Parameters

+ + + + + + + +
ParameterDescription
pretty If 'true', then the output is pretty printed.
-

Query Parameters

+

Body Parameters

@@ -46431,7 +50609,7 @@ spec:
-

Delete

+

Delete

kubectl Command

@@ -46486,10 +50664,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -46502,8 +50676,8 @@ orphanDependents: false -body
DeleteOptions - +pretty +If 'true', then the output is pretty printed. gracePeriodSeconds @@ -46515,6 +50689,21 @@ orphanDependents: false +

Body Parameters

+ + + + + + + + + + + + + +
ParameterDescription
body
DeleteOptions

Response

@@ -46530,7 +50719,7 @@ orphanDependents: false
-

Delete Collection

+

Delete Collection

kubectl Command

@@ -46571,10 +50760,6 @@ orphanDependents: false namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -46587,6 +50772,10 @@ orphanDependents: false +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -46623,9 +50812,9 @@ orphanDependents: false -

Read Operations

+

Read Operations

See supported operations below...

-

Read

+

Read

kubectl Command

@@ -46781,10 +50970,6 @@ $ curl -X GET http:// namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -46797,6 +50982,10 @@ $ curl -X GET http:// +pretty +If 'true', then the output is pretty printed. + + exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' @@ -46821,7 +51010,7 @@ $ curl -X GET http:// -

List

+

List

kubectl Command

@@ -46989,10 +51178,6 @@ $ kubectl get job -o json namespace object name and auth scope, such as for teams and projects - -pretty -If 'true', then the output is pretty printed. -

Query Parameters

@@ -47005,6 +51190,10 @@ $ kubectl get job -o json +pretty +If 'true', then the output is pretty printed. + + fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything. @@ -47041,7 +51230,7 @@ $ kubectl get job -o json -

List All Namespaces

+

List All Namespaces

kubectl Command

@@ -47069,7 +51258,7 @@ $ kubectl get job -o json

list or watch objects of kind Job

HTTP Request

GET /apis/batch/v2alpha1/jobs

-

Path Parameters

+

Query Parameters

@@ -47119,7 +51308,7 @@ $ kubectl get job -o json
-

Watch

+

Watch

kubectl Command

@@ -47278,14 +51467,6 @@ $ kubectl get job example-job get job example-job Query Parameters + + + + + + + + + + + + + + + + @@ -47326,7 +51526,7 @@ $ kubectl get job example-job Watch List All Namespaces +

Watch List All Namespaces

kubectl Command

@@ -47354,7 +51554,7 @@ $ kubectl get job example-job HTTP Request

GET /apis/batch/v2alpha1/watch/jobs

-

Path Parameters

+

Query Parameters

ParameterDescription
fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
pretty If 'true', then the output is pretty printed.
@@ -47553,6 +51753,14 @@ Appears In JobStatus + + + + + + + + diff --git a/docs/api-reference/v1.5/manifest.json b/docs/api-reference/v1.5/manifest.json index a255598f16..5b56e46622 100644 --- a/docs/api-reference/v1.5/manifest.json +++ b/docs/api-reference/v1.5/manifest.json @@ -154,24 +154,42 @@ { "filename": "_generated_apiversions_unversioned_definition.md" }, + { + "filename": "_generated_awselasticblockstorevolumesource_v1_definition.md" + }, { "filename": "_generated_attachedvolume_v1_definition.md" }, + { + "filename": "_generated_azurediskvolumesource_v1_definition.md" + }, + { + "filename": "_generated_azurefilevolumesource_v1_definition.md" + }, { "filename": "_generated_cputargetutilization_v1beta1_definition.md" }, { "filename": "_generated_capabilities_v1_definition.md" }, + { + "filename": "_generated_cephfsvolumesource_v1_definition.md" + }, { "filename": "_generated_certificatesigningrequestcondition_v1alpha1_definition.md" }, + { + "filename": "_generated_cindervolumesource_v1_definition.md" + }, { "filename": "_generated_componentcondition_v1_definition.md" }, { "filename": "_generated_configmapkeyselector_v1_definition.md" }, + { + "filename": "_generated_configmapvolumesource_v1_definition.md" + }, { "filename": "_generated_containerimage_v1_definition.md" }, @@ -202,6 +220,15 @@ { "filename": "_generated_deploymentcondition_v1beta1_definition.md" }, + { + "filename": "_generated_downwardapivolumefile_v1_definition.md" + }, + { + "filename": "_generated_downwardapivolumesource_v1_definition.md" + }, + { + "filename": "_generated_emptydirvolumesource_v1_definition.md" + }, { "filename": "_generated_endpointaddress_v1_definition.md" }, @@ -226,6 +253,24 @@ { "filename": "_generated_execaction_v1_definition.md" }, + { + "filename": "_generated_fcvolumesource_v1_definition.md" + }, + { + "filename": "_generated_flexvolumesource_v1_definition.md" + }, + { + "filename": "_generated_flockervolumesource_v1_definition.md" + }, + { + "filename": "_generated_gcepersistentdiskvolumesource_v1_definition.md" + }, + { + "filename": "_generated_gitrepovolumesource_v1_definition.md" + }, + { + "filename": "_generated_glusterfsvolumesource_v1_definition.md" + }, { "filename": "_generated_groupversionfordiscovery_unversioned_definition.md" }, @@ -235,9 +280,21 @@ { "filename": "_generated_httpheader_v1_definition.md" }, + { + "filename": "_generated_httpingresspath_v1beta1_definition.md" + }, + { + "filename": "_generated_httpingressrulevalue_v1beta1_definition.md" + }, { "filename": "_generated_handler_v1_definition.md" }, + { + "filename": "_generated_hostpathvolumesource_v1_definition.md" + }, + { + "filename": "_generated_iscsivolumesource_v1_definition.md" + }, { "filename": "_generated_info_version_definition.md" }, @@ -259,6 +316,9 @@ { "filename": "_generated_jobtemplatespec_v2alpha1_definition.md" }, + { + "filename": "_generated_keytopath_v1_definition.md" + }, { "filename": "_generated_labelselector_unversioned_definition.md" }, @@ -283,6 +343,9 @@ { "filename": "_generated_localobjectreference_v1_definition.md" }, + { + "filename": "_generated_nfsvolumesource_v1_definition.md" + }, { "filename": "_generated_networkpolicyingressrule_v1beta1_definition.md" }, @@ -322,6 +385,12 @@ { "filename": "_generated_patch_unversioned_definition.md" }, + { + "filename": "_generated_persistentvolumeclaimvolumesource_v1_definition.md" + }, + { + "filename": "_generated_photonpersistentdiskvolumesource_v1_definition.md" + }, { "filename": "_generated_podcondition_v1_definition.md" }, @@ -340,6 +409,12 @@ { "filename": "_generated_quantity_resource_definition.md" }, + { + "filename": "_generated_quobytevolumesource_v1_definition.md" + }, + { + "filename": "_generated_rbdvolumesource_v1_definition.md" + }, { "filename": "_generated_rawextension_runtime_definition.md" }, @@ -373,6 +448,9 @@ { "filename": "_generated_secretkeyselector_v1_definition.md" }, + { + "filename": "_generated_secretvolumesource_v1_definition.md" + }, { "filename": "_generated_securitycontext_v1_definition.md" }, @@ -409,6 +487,9 @@ { "filename": "_generated_volumemount_v1_definition.md" }, + { + "filename": "_generated_vspherevirtualdiskvolumesource_v1_definition.md" + }, { "filename": "_oldversions.md" }, diff --git a/docs/api-reference/v1.5/navData.js b/docs/api-reference/v1.5/navData.js index e1a34a0693..2b19be8860 100644 --- a/docs/api-reference/v1.5/navData.js +++ b/docs/api-reference/v1.5/navData.js @@ -1 +1 @@ -(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[{"section":"-strong-read-operations-strong--491","subsections":[{"section":"watch-list-all-namespaces-496"},{"section":"watch-495"},{"section":"list-all-namespaces-494"},{"section":"list-493"},{"section":"read-492"}]},{"section":"-strong-write-operations-strong--485","subsections":[{"section":"delete-collection-490"},{"section":"delete-489"},{"section":"patch-488"},{"section":"replace-487"},{"section":"create-486"}]}]},{"section":"job-v1beta1","subsections":[{"section":"-strong-status-operations-strong--481","subsections":[{"section":"replace-status-484"},{"section":"read-status-483"},{"section":"patch-status-482"}]},{"section":"-strong-read-operations-strong--474","subsections":[{"section":"watch-list-all-namespaces-480"},{"section":"watch-list-479"},{"section":"watch-478"},{"section":"list-all-namespaces-477"},{"section":"list-476"},{"section":"read-475"}]},{"section":"-strong-write-operations-strong--468","subsections":[{"section":"delete-collection-473"},{"section":"delete-472"},{"section":"patch-471"},{"section":"replace-470"},{"section":"create-469"}]}]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[{"section":"-strong-status-operations-strong--464","subsections":[{"section":"replace-status-467"},{"section":"read-status-466"},{"section":"patch-status-465"}]},{"section":"-strong-read-operations-strong--457","subsections":[{"section":"watch-list-all-namespaces-463"},{"section":"watch-list-462"},{"section":"watch-461"},{"section":"list-all-namespaces-460"},{"section":"list-459"},{"section":"read-458"}]},{"section":"-strong-write-operations-strong--451","subsections":[{"section":"delete-collection-456"},{"section":"delete-455"},{"section":"patch-454"},{"section":"replace-453"},{"section":"create-452"}]}]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"handler-v1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"attachedvolume-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[{"section":"-strong-read-operations-strong--445","subsections":[{"section":"watch-list-all-namespaces-450"},{"section":"watch-449"},{"section":"list-all-namespaces-448"},{"section":"list-447"},{"section":"read-446"}]},{"section":"-strong-write-operations-strong--439","subsections":[{"section":"delete-collection-444"},{"section":"delete-443"},{"section":"patch-442"},{"section":"replace-441"},{"section":"create-440"}]}]},{"section":"tokenreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--437","subsections":[{"section":"create-438"}]}]},{"section":"subjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--435","subsections":[{"section":"create-436"}]}]},{"section":"serviceaccount-v1","subsections":[{"section":"-strong-read-operations-strong--428","subsections":[{"section":"watch-list-all-namespaces-434"},{"section":"watch-list-433"},{"section":"watch-432"},{"section":"list-all-namespaces-431"},{"section":"list-430"},{"section":"read-429"}]},{"section":"-strong-write-operations-strong--422","subsections":[{"section":"delete-collection-427"},{"section":"delete-426"},{"section":"patch-425"},{"section":"replace-424"},{"section":"create-423"}]}]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--420","subsections":[{"section":"create-421"}]}]},{"section":"rolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--413","subsections":[{"section":"watch-list-all-namespaces-419"},{"section":"watch-list-418"},{"section":"watch-417"},{"section":"list-all-namespaces-416"},{"section":"list-415"},{"section":"read-414"}]},{"section":"-strong-write-operations-strong--407","subsections":[{"section":"delete-collection-412"},{"section":"delete-411"},{"section":"patch-410"},{"section":"replace-409"},{"section":"create-408"}]}]},{"section":"role-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--401","subsections":[{"section":"watch-list-all-namespaces-406"},{"section":"watch-405"},{"section":"list-all-namespaces-404"},{"section":"list-403"},{"section":"read-402"}]},{"section":"-strong-write-operations-strong--395","subsections":[{"section":"delete-collection-400"},{"section":"delete-399"},{"section":"patch-398"},{"section":"replace-397"},{"section":"create-396"}]}]},{"section":"resourcequota-v1","subsections":[{"section":"-strong-read-operations-strong--389","subsections":[{"section":"watch-list-all-namespaces-394"},{"section":"watch-393"},{"section":"list-all-namespaces-392"},{"section":"list-391"},{"section":"read-390"}]},{"section":"-strong-write-operations-strong--383","subsections":[{"section":"delete-collection-388"},{"section":"delete-387"},{"section":"patch-386"},{"section":"replace-385"},{"section":"create-384"}]}]},{"section":"persistentvolume-v1","subsections":[{"section":"-strong-status-operations-strong--379","subsections":[{"section":"replace-status-382"},{"section":"read-status-381"},{"section":"patch-status-380"}]},{"section":"-strong-read-operations-strong--374","subsections":[{"section":"watch-list-378"},{"section":"watch-377"},{"section":"list-376"},{"section":"read-375"}]},{"section":"-strong-write-operations-strong--368","subsections":[{"section":"delete-collection-373"},{"section":"delete-372"},{"section":"patch-371"},{"section":"replace-370"},{"section":"create-369"}]}]},{"section":"node-v1","subsections":[{"section":"-strong-proxy-operations-strong--349","subsections":[{"section":"replace-proxy-path-367"},{"section":"replace-proxy-366"},{"section":"replace-connect-proxy-path-365"},{"section":"replace-connect-proxy-364"},{"section":"head-connect-proxy-path-363"},{"section":"head-connect-proxy-362"},{"section":"get-proxy-path-361"},{"section":"get-proxy-360"},{"section":"get-connect-proxy-path-359"},{"section":"get-connect-proxy-358"},{"section":"delete-proxy-path-357"},{"section":"delete-proxy-356"},{"section":"delete-connect-proxy-path-355"},{"section":"delete-connect-proxy-354"},{"section":"create-proxy-path-353"},{"section":"create-proxy-352"},{"section":"create-connect-proxy-path-351"},{"section":"create-connect-proxy-350"}]},{"section":"-strong-read-operations-strong--344","subsections":[{"section":"watch-list-348"},{"section":"watch-347"},{"section":"list-346"},{"section":"read-345"}]},{"section":"-strong-write-operations-strong--338","subsections":[{"section":"delete-collection-343"},{"section":"delete-342"},{"section":"patch-341"},{"section":"replace-340"},{"section":"create-339"}]}]},{"section":"namespace-v1","subsections":[{"section":"-strong-read-operations-strong--334","subsections":[{"section":"watch-337"},{"section":"list-336"},{"section":"read-335"}]},{"section":"-strong-write-operations-strong--328","subsections":[{"section":"delete-collection-333"},{"section":"delete-332"},{"section":"patch-331"},{"section":"replace-330"},{"section":"create-329"}]}]},{"section":"localsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--326","subsections":[{"section":"create-327"}]}]},{"section":"componentstatus-v1","subsections":[{"section":"-strong-read-operations-strong--323","subsections":[{"section":"list-325"},{"section":"read-324"}]}]},{"section":"clusterrolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--319","subsections":[{"section":"watch-322"},{"section":"list-321"},{"section":"read-320"}]},{"section":"-strong-write-operations-strong--313","subsections":[{"section":"delete-collection-318"},{"section":"delete-317"},{"section":"patch-316"},{"section":"replace-315"},{"section":"create-314"}]}]},{"section":"clusterrole-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--308","subsections":[{"section":"watch-list-312"},{"section":"watch-311"},{"section":"list-310"},{"section":"read-309"}]},{"section":"-strong-write-operations-strong--302","subsections":[{"section":"delete-collection-307"},{"section":"delete-306"},{"section":"patch-305"},{"section":"replace-304"},{"section":"create-303"}]}]},{"section":"certificatesigningrequest-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--298","subsections":[{"section":"watch-301"},{"section":"list-300"},{"section":"read-299"}]},{"section":"-strong-write-operations-strong--292","subsections":[{"section":"delete-collection-297"},{"section":"delete-296"},{"section":"patch-295"},{"section":"replace-294"},{"section":"create-293"}]}]},{"section":"binding-v1","subsections":[{"section":"-strong-write-operations-strong--290","subsections":[{"section":"create-291"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[{"section":"-strong-read-operations-strong--285","subsections":[{"section":"watch-list-289"},{"section":"watch-288"},{"section":"list-287"},{"section":"read-286"}]},{"section":"-strong-write-operations-strong--279","subsections":[{"section":"delete-collection-284"},{"section":"delete-283"},{"section":"patch-282"},{"section":"replace-281"},{"section":"create-280"}]}]},{"section":"poddisruptionbudget-v1beta1","subsections":[{"section":"-strong-status-operations-strong--275","subsections":[{"section":"replace-status-278"},{"section":"read-status-277"},{"section":"patch-status-276"}]},{"section":"-strong-read-operations-strong--268","subsections":[{"section":"watch-list-all-namespaces-274"},{"section":"watch-list-273"},{"section":"watch-272"},{"section":"list-all-namespaces-271"},{"section":"list-270"},{"section":"read-269"}]},{"section":"-strong-write-operations-strong--262","subsections":[{"section":"delete-collection-267"},{"section":"delete-266"},{"section":"patch-265"},{"section":"replace-264"},{"section":"create-263"}]}]},{"section":"podtemplate-v1","subsections":[{"section":"-strong-read-operations-strong--256","subsections":[{"section":"watch-list-all-namespaces-261"},{"section":"watch-260"},{"section":"list-all-namespaces-259"},{"section":"list-258"},{"section":"read-257"}]},{"section":"-strong-write-operations-strong--250","subsections":[{"section":"delete-collection-255"},{"section":"delete-254"},{"section":"patch-253"},{"section":"replace-252"},{"section":"create-251"}]}]},{"section":"horizontalpodautoscaler-v1","subsections":[{"section":"-strong-read-operations-strong--244","subsections":[{"section":"watch-list-all-namespaces-249"},{"section":"watch-248"},{"section":"list-all-namespaces-247"},{"section":"list-246"},{"section":"read-245"}]},{"section":"-strong-write-operations-strong--238","subsections":[{"section":"delete-collection-243"},{"section":"delete-242"},{"section":"patch-241"},{"section":"replace-240"},{"section":"create-239"}]}]},{"section":"limitrange-v1","subsections":[{"section":"-strong-read-operations-strong--231","subsections":[{"section":"watch-list-all-namespaces-237"},{"section":"watch-list-236"},{"section":"watch-235"},{"section":"list-all-namespaces-234"},{"section":"list-233"},{"section":"read-232"}]},{"section":"-strong-write-operations-strong--225","subsections":[{"section":"delete-collection-230"},{"section":"delete-229"},{"section":"patch-228"},{"section":"replace-227"},{"section":"create-226"}]}]},{"section":"event-v1","subsections":[{"section":"-strong-read-operations-strong--219","subsections":[{"section":"watch-list-all-namespaces-224"},{"section":"watch-223"},{"section":"list-all-namespaces-222"},{"section":"list-221"},{"section":"read-220"}]},{"section":"-strong-write-operations-strong--213","subsections":[{"section":"delete-collection-218"},{"section":"delete-217"},{"section":"patch-216"},{"section":"replace-215"},{"section":"create-214"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[{"section":"-strong-read-operations-strong--208","subsections":[{"section":"watch-list-212"},{"section":"watch-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":"persistentvolumeclaim-v1","subsections":[{"section":"-strong-status-operations-strong--198","subsections":[{"section":"replace-status-201"},{"section":"read-status-200"},{"section":"patch-status-199"}]},{"section":"-strong-read-operations-strong--192","subsections":[{"section":"watch-list-all-namespaces-197"},{"section":"watch-196"},{"section":"list-all-namespaces-195"},{"section":"list-194"},{"section":"read-193"}]},{"section":"-strong-write-operations-strong--186","subsections":[{"section":"delete-collection-191"},{"section":"delete-190"},{"section":"patch-189"},{"section":"replace-188"},{"section":"create-187"}]}]},{"section":"secret-v1","subsections":[{"section":"-strong-read-operations-strong--180","subsections":[{"section":"watch-list-all-namespaces-185"},{"section":"watch-184"},{"section":"list-all-namespaces-183"},{"section":"list-182"},{"section":"read-181"}]},{"section":"-strong-write-operations-strong--174","subsections":[{"section":"delete-collection-179"},{"section":"delete-178"},{"section":"patch-177"},{"section":"replace-176"},{"section":"create-175"}]}]},{"section":"configmap-v1","subsections":[{"section":"-strong-read-operations-strong--168","subsections":[{"section":"watch-list-all-namespaces-173"},{"section":"watch-172"},{"section":"list-all-namespaces-171"},{"section":"list-170"},{"section":"read-169"}]},{"section":"-strong-write-operations-strong--162","subsections":[{"section":"delete-collection-167"},{"section":"delete-166"},{"section":"patch-165"},{"section":"replace-164"},{"section":"create-163"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[{"section":"-strong-proxy-operations-strong--143","subsections":[{"section":"replace-proxy-path-161"},{"section":"replace-proxy-160"},{"section":"replace-connect-proxy-path-159"},{"section":"replace-connect-proxy-158"},{"section":"head-connect-proxy-path-157"},{"section":"head-connect-proxy-156"},{"section":"get-proxy-path-155"},{"section":"get-proxy-154"},{"section":"get-connect-proxy-path-153"},{"section":"get-connect-proxy-152"},{"section":"delete-proxy-path-151"},{"section":"delete-proxy-150"},{"section":"delete-connect-proxy-path-149"},{"section":"delete-connect-proxy-148"},{"section":"create-proxy-path-147"},{"section":"create-proxy-146"},{"section":"create-connect-proxy-path-145"},{"section":"create-connect-proxy-144"}]},{"section":"-strong-status-operations-strong--139","subsections":[{"section":"replace-status-142"},{"section":"read-status-141"},{"section":"patch-status-140"}]},{"section":"-strong-read-operations-strong--132","subsections":[{"section":"watch-list-all-namespaces-138"},{"section":"watch-list-137"},{"section":"watch-136"},{"section":"list-all-namespaces-135"},{"section":"list-134"},{"section":"read-133"}]},{"section":"-strong-write-operations-strong--127","subsections":[{"section":"delete-131"},{"section":"patch-130"},{"section":"replace-129"},{"section":"create-128"}]}]},{"section":"ingress-v1beta1","subsections":[{"section":"-strong-status-operations-strong--123","subsections":[{"section":"replace-status-126"},{"section":"read-status-125"},{"section":"patch-status-124"}]},{"section":"-strong-read-operations-strong--116","subsections":[{"section":"watch-list-all-namespaces-122"},{"section":"watch-list-121"},{"section":"watch-120"},{"section":"list-all-namespaces-119"},{"section":"list-118"},{"section":"read-117"}]},{"section":"-strong-write-operations-strong--110","subsections":[{"section":"delete-collection-115"},{"section":"delete-114"},{"section":"patch-113"},{"section":"replace-112"},{"section":"create-111"}]}]},{"section":"endpoints-v1","subsections":[{"section":"-strong-read-operations-strong--104","subsections":[{"section":"watch-list-all-namespaces-109"},{"section":"watch-108"},{"section":"list-all-namespaces-107"},{"section":"list-106"},{"section":"read-105"}]},{"section":"-strong-write-operations-strong--98","subsections":[{"section":"delete-collection-103"},{"section":"delete-102"},{"section":"patch-101"},{"section":"replace-100"},{"section":"create-99"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[{"section":"-strong-read-operations-strong--92","subsections":[{"section":"watch-list-all-namespaces-97"},{"section":"watch-96"},{"section":"list-all-namespaces-95"},{"section":"list-94"},{"section":"read-93"}]},{"section":"-strong-write-operations-strong--86","subsections":[{"section":"delete-collection-91"},{"section":"delete-90"},{"section":"patch-89"},{"section":"replace-88"},{"section":"create-87"}]}]},{"section":"replicationcontroller-v1","subsections":[{"section":"-strong-read-operations-strong--80","subsections":[{"section":"watch-list-all-namespaces-85"},{"section":"watch-84"},{"section":"list-all-namespaces-83"},{"section":"list-82"},{"section":"read-81"}]},{"section":"-strong-write-operations-strong--74","subsections":[{"section":"delete-collection-79"},{"section":"delete-78"},{"section":"patch-77"},{"section":"replace-76"},{"section":"create-75"}]}]},{"section":"replicaset-v1beta1","subsections":[{"section":"-strong-misc-operations-strong--70","subsections":[{"section":"patch-scale-73"},{"section":"replace-scale-72"},{"section":"read-scale-71"}]},{"section":"-strong-read-operations-strong--63","subsections":[{"section":"watch-list-all-namespaces-69"},{"section":"watch-list-68"},{"section":"watch-67"},{"section":"list-all-namespaces-66"},{"section":"list-65"},{"section":"read-64"}]},{"section":"-strong-write-operations-strong--57","subsections":[{"section":"delete-collection-62"},{"section":"delete-61"},{"section":"patch-60"},{"section":"replace-59"},{"section":"create-58"}]}]},{"section":"pod-v1","subsections":[{"section":"-strong-misc-operations-strong--56","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-read-operations-strong--50","subsections":[{"section":"watch-list-all-namespaces-55"},{"section":"watch-54"},{"section":"list-all-namespaces-53"},{"section":"list-52"},{"section":"read-51"}]},{"section":"-strong-write-operations-strong--44","subsections":[{"section":"delete-collection-49"},{"section":"delete-48"},{"section":"patch-47"},{"section":"replace-46"},{"section":"create-45"}]}]},{"section":"job-v1","subsections":[{"section":"-strong-status-operations-strong--40","subsections":[{"section":"replace-status-43"},{"section":"read-status-42"},{"section":"patch-status-41"}]},{"section":"-strong-read-operations-strong--34","subsections":[{"section":"watch-list-all-namespaces-39"},{"section":"watch-38"},{"section":"list-all-namespaces-37"},{"section":"list-36"},{"section":"read-35"}]},{"section":"-strong-write-operations-strong--28","subsections":[{"section":"delete-collection-33"},{"section":"delete-32"},{"section":"patch-31"},{"section":"replace-30"},{"section":"create-29"}]}]},{"section":"deployment-v1beta1","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"},{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"section":"-strong-read-operations-strong--21","subsections":[{"section":"watch-list-all-namespaces-27"},{"section":"watch-list-26"},{"section":"watch-25"},{"section":"list-all-namespaces-24"},{"section":"list-23"},{"section":"read-22"}]},{"section":"-strong-write-operations-strong--15","subsections":[{"section":"delete-collection-20"},{"section":"delete-19"},{"section":"patch-18"},{"section":"replace-17"},{"section":"create-16"}]}]},{"section":"daemonset-v1beta1","subsections":[{"section":"-strong-status-operations-strong-","subsections":[{"section":"replace-status"},{"section":"read-status"},{"section":"patch-status"}]},{"section":"-strong-read-operations-strong--9","subsections":[{"section":"watch-list-all-namespaces-14"},{"section":"watch-list"},{"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","subsections":[{"section":"-strong-read-operations-strong-","subsections":[{"section":"watch-list-all-namespaces"},{"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","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","watch-list-all-namespaces-496","watch-495","list-all-namespaces-494","list-493","read-492","-strong-read-operations-strong--491","delete-collection-490","delete-489","patch-488","replace-487","create-486","-strong-write-operations-strong--485","job-v2alpha1","replace-status-484","read-status-483","patch-status-482","-strong-status-operations-strong--481","watch-list-all-namespaces-480","watch-list-479","watch-478","list-all-namespaces-477","list-476","read-475","-strong-read-operations-strong--474","delete-collection-473","delete-472","patch-471","replace-470","create-469","-strong-write-operations-strong--468","job-v1beta1","replace-status-467","read-status-466","patch-status-465","-strong-status-operations-strong--464","watch-list-all-namespaces-463","watch-list-462","watch-461","list-all-namespaces-460","list-459","read-458","-strong-read-operations-strong--457","delete-collection-456","delete-455","patch-454","replace-453","create-452","-strong-write-operations-strong--451","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","handler-v1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapkeyselector-v1","componentcondition-v1","certificatesigningrequestcondition-v1alpha1","capabilities-v1","cputargetutilization-v1beta1","attachedvolume-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","watch-list-all-namespaces-450","watch-449","list-all-namespaces-448","list-447","read-446","-strong-read-operations-strong--445","delete-collection-444","delete-443","patch-442","replace-441","create-440","-strong-write-operations-strong--439","networkpolicy-v1beta1","create-438","-strong-write-operations-strong--437","tokenreview-v1beta1","create-436","-strong-write-operations-strong--435","subjectaccessreview-v1beta1","watch-list-all-namespaces-434","watch-list-433","watch-432","list-all-namespaces-431","list-430","read-429","-strong-read-operations-strong--428","delete-collection-427","delete-426","patch-425","replace-424","create-423","-strong-write-operations-strong--422","serviceaccount-v1","create-421","-strong-write-operations-strong--420","selfsubjectaccessreview-v1beta1","watch-list-all-namespaces-419","watch-list-418","watch-417","list-all-namespaces-416","list-415","read-414","-strong-read-operations-strong--413","delete-collection-412","delete-411","patch-410","replace-409","create-408","-strong-write-operations-strong--407","rolebinding-v1alpha1","watch-list-all-namespaces-406","watch-405","list-all-namespaces-404","list-403","read-402","-strong-read-operations-strong--401","delete-collection-400","delete-399","patch-398","replace-397","create-396","-strong-write-operations-strong--395","role-v1alpha1","watch-list-all-namespaces-394","watch-393","list-all-namespaces-392","list-391","read-390","-strong-read-operations-strong--389","delete-collection-388","delete-387","patch-386","replace-385","create-384","-strong-write-operations-strong--383","resourcequota-v1","replace-status-382","read-status-381","patch-status-380","-strong-status-operations-strong--379","watch-list-378","watch-377","list-376","read-375","-strong-read-operations-strong--374","delete-collection-373","delete-372","patch-371","replace-370","create-369","-strong-write-operations-strong--368","persistentvolume-v1","replace-proxy-path-367","replace-proxy-366","replace-connect-proxy-path-365","replace-connect-proxy-364","head-connect-proxy-path-363","head-connect-proxy-362","get-proxy-path-361","get-proxy-360","get-connect-proxy-path-359","get-connect-proxy-358","delete-proxy-path-357","delete-proxy-356","delete-connect-proxy-path-355","delete-connect-proxy-354","create-proxy-path-353","create-proxy-352","create-connect-proxy-path-351","create-connect-proxy-350","-strong-proxy-operations-strong--349","watch-list-348","watch-347","list-346","read-345","-strong-read-operations-strong--344","delete-collection-343","delete-342","patch-341","replace-340","create-339","-strong-write-operations-strong--338","node-v1","watch-337","list-336","read-335","-strong-read-operations-strong--334","delete-collection-333","delete-332","patch-331","replace-330","create-329","-strong-write-operations-strong--328","namespace-v1","create-327","-strong-write-operations-strong--326","localsubjectaccessreview-v1beta1","list-325","read-324","-strong-read-operations-strong--323","componentstatus-v1","watch-322","list-321","read-320","-strong-read-operations-strong--319","delete-collection-318","delete-317","patch-316","replace-315","create-314","-strong-write-operations-strong--313","clusterrolebinding-v1alpha1","watch-list-312","watch-311","list-310","read-309","-strong-read-operations-strong--308","delete-collection-307","delete-306","patch-305","replace-304","create-303","-strong-write-operations-strong--302","clusterrole-v1alpha1","watch-301","list-300","read-299","-strong-read-operations-strong--298","delete-collection-297","delete-296","patch-295","replace-294","create-293","-strong-write-operations-strong--292","certificatesigningrequest-v1alpha1","create-291","-strong-write-operations-strong--290","binding-v1","-strong-cluster-strong-","watch-list-289","watch-288","list-287","read-286","-strong-read-operations-strong--285","delete-collection-284","delete-283","patch-282","replace-281","create-280","-strong-write-operations-strong--279","thirdpartyresource-v1beta1","replace-status-278","read-status-277","patch-status-276","-strong-status-operations-strong--275","watch-list-all-namespaces-274","watch-list-273","watch-272","list-all-namespaces-271","list-270","read-269","-strong-read-operations-strong--268","delete-collection-267","delete-266","patch-265","replace-264","create-263","-strong-write-operations-strong--262","poddisruptionbudget-v1beta1","watch-list-all-namespaces-261","watch-260","list-all-namespaces-259","list-258","read-257","-strong-read-operations-strong--256","delete-collection-255","delete-254","patch-253","replace-252","create-251","-strong-write-operations-strong--250","podtemplate-v1","watch-list-all-namespaces-249","watch-248","list-all-namespaces-247","list-246","read-245","-strong-read-operations-strong--244","delete-collection-243","delete-242","patch-241","replace-240","create-239","-strong-write-operations-strong--238","horizontalpodautoscaler-v1","watch-list-all-namespaces-237","watch-list-236","watch-235","list-all-namespaces-234","list-233","read-232","-strong-read-operations-strong--231","delete-collection-230","delete-229","patch-228","replace-227","create-226","-strong-write-operations-strong--225","limitrange-v1","watch-list-all-namespaces-224","watch-223","list-all-namespaces-222","list-221","read-220","-strong-read-operations-strong--219","delete-collection-218","delete-217","patch-216","replace-215","create-214","-strong-write-operations-strong--213","event-v1","-strong-metadata-strong-","volume-v1","watch-list-212","watch-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","storageclass-v1beta1","replace-status-201","read-status-200","patch-status-199","-strong-status-operations-strong--198","watch-list-all-namespaces-197","watch-196","list-all-namespaces-195","list-194","read-193","-strong-read-operations-strong--192","delete-collection-191","delete-190","patch-189","replace-188","create-187","-strong-write-operations-strong--186","persistentvolumeclaim-v1","watch-list-all-namespaces-185","watch-184","list-all-namespaces-183","list-182","read-181","-strong-read-operations-strong--180","delete-collection-179","delete-178","patch-177","replace-176","create-175","-strong-write-operations-strong--174","secret-v1","watch-list-all-namespaces-173","watch-172","list-all-namespaces-171","list-170","read-169","-strong-read-operations-strong--168","delete-collection-167","delete-166","patch-165","replace-164","create-163","-strong-write-operations-strong--162","configmap-v1","-strong-config-storage-strong-","replace-proxy-path-161","replace-proxy-160","replace-connect-proxy-path-159","replace-connect-proxy-158","head-connect-proxy-path-157","head-connect-proxy-156","get-proxy-path-155","get-proxy-154","get-connect-proxy-path-153","get-connect-proxy-152","delete-proxy-path-151","delete-proxy-150","delete-connect-proxy-path-149","delete-connect-proxy-148","create-proxy-path-147","create-proxy-146","create-connect-proxy-path-145","create-connect-proxy-144","-strong-proxy-operations-strong--143","replace-status-142","read-status-141","patch-status-140","-strong-status-operations-strong--139","watch-list-all-namespaces-138","watch-list-137","watch-136","list-all-namespaces-135","list-134","read-133","-strong-read-operations-strong--132","delete-131","patch-130","replace-129","create-128","-strong-write-operations-strong--127","service-v1","replace-status-126","read-status-125","patch-status-124","-strong-status-operations-strong--123","watch-list-all-namespaces-122","watch-list-121","watch-120","list-all-namespaces-119","list-118","read-117","-strong-read-operations-strong--116","delete-collection-115","delete-114","patch-113","replace-112","create-111","-strong-write-operations-strong--110","ingress-v1beta1","watch-list-all-namespaces-109","watch-108","list-all-namespaces-107","list-106","read-105","-strong-read-operations-strong--104","delete-collection-103","delete-102","patch-101","replace-100","create-99","-strong-write-operations-strong--98","endpoints-v1","-strong-discovery-load-balancing-strong-","watch-list-all-namespaces-97","watch-96","list-all-namespaces-95","list-94","read-93","-strong-read-operations-strong--92","delete-collection-91","delete-90","patch-89","replace-88","create-87","-strong-write-operations-strong--86","statefulset-v1beta1","watch-list-all-namespaces-85","watch-84","list-all-namespaces-83","list-82","read-81","-strong-read-operations-strong--80","delete-collection-79","delete-78","patch-77","replace-76","create-75","-strong-write-operations-strong--74","replicationcontroller-v1","patch-scale-73","replace-scale-72","read-scale-71","-strong-misc-operations-strong--70","watch-list-all-namespaces-69","watch-list-68","watch-67","list-all-namespaces-66","list-65","read-64","-strong-read-operations-strong--63","delete-collection-62","delete-61","patch-60","replace-59","create-58","-strong-write-operations-strong--57","replicaset-v1beta1","read-log","-strong-misc-operations-strong--56","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-","watch-list-all-namespaces-55","watch-54","list-all-namespaces-53","list-52","read-51","-strong-read-operations-strong--50","delete-collection-49","delete-48","patch-47","replace-46","create-45","-strong-write-operations-strong--44","pod-v1","replace-status-43","read-status-42","patch-status-41","-strong-status-operations-strong--40","watch-list-all-namespaces-39","watch-38","list-all-namespaces-37","list-36","read-35","-strong-read-operations-strong--34","delete-collection-33","delete-32","patch-31","replace-30","create-29","-strong-write-operations-strong--28","job-v1","rollback","patch-scale","replace-scale","read-scale","-strong-misc-operations-strong-","watch-list-all-namespaces-27","watch-list-26","watch-25","list-all-namespaces-24","list-23","read-22","-strong-read-operations-strong--21","delete-collection-20","delete-19","patch-18","replace-17","create-16","-strong-write-operations-strong--15","deployment-v1beta1","replace-status","read-status","patch-status","-strong-status-operations-strong-","watch-list-all-namespaces-14","watch-list","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","watch-list-all-namespaces","watch","list-all-namespaces","list","read-2","-strong-read-operations-strong-","delete-collection","delete-1","patch","replace","create","-strong-write-operations-strong-","cronjob-v2alpha1","container-v1","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]}})(); \ No newline at end of file +(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[{"section":"-strong-read-operations-strong--484","subsections":[{"section":"watch-list-all-namespaces-489"},{"section":"watch-488"},{"section":"list-all-namespaces-487"},{"section":"list-486"},{"section":"read-485"}]},{"section":"-strong-write-operations-strong--478","subsections":[{"section":"delete-collection-483"},{"section":"delete-482"},{"section":"patch-481"},{"section":"replace-480"},{"section":"create-479"}]}]},{"section":"job-v1beta1","subsections":[{"section":"-strong-read-operations-strong--472","subsections":[{"section":"watch-list-all-namespaces-477"},{"section":"watch-476"},{"section":"list-all-namespaces-475"},{"section":"list-474"},{"section":"read-473"}]},{"section":"-strong-write-operations-strong--466","subsections":[{"section":"delete-collection-471"},{"section":"delete-470"},{"section":"patch-469"},{"section":"replace-468"},{"section":"create-467"}]}]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[{"section":"-strong-read-operations-strong--460","subsections":[{"section":"watch-list-all-namespaces-465"},{"section":"watch-464"},{"section":"list-all-namespaces-463"},{"section":"list-462"},{"section":"read-461"}]},{"section":"-strong-write-operations-strong--454","subsections":[{"section":"delete-collection-459"},{"section":"delete-458"},{"section":"patch-457"},{"section":"replace-456"},{"section":"create-455"}]}]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"vspherevirtualdiskvolumesource-v1"},{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretvolumesource-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"rbdvolumesource-v1"},{"section":"quobytevolumesource-v1"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"photonpersistentdiskvolumesource-v1"},{"section":"persistentvolumeclaimvolumesource-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"nfsvolumesource-v1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"keytopath-v1"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"iscsivolumesource-v1"},{"section":"hostpathvolumesource-v1"},{"section":"handler-v1"},{"section":"httpingressrulevalue-v1beta1"},{"section":"httpingresspath-v1beta1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"glusterfsvolumesource-v1"},{"section":"gitrepovolumesource-v1"},{"section":"gcepersistentdiskvolumesource-v1"},{"section":"flockervolumesource-v1"},{"section":"flexvolumesource-v1"},{"section":"fcvolumesource-v1"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"emptydirvolumesource-v1"},{"section":"downwardapivolumesource-v1"},{"section":"downwardapivolumefile-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapvolumesource-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"cindervolumesource-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"cephfsvolumesource-v1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"azurefilevolumesource-v1"},{"section":"azurediskvolumesource-v1"},{"section":"attachedvolume-v1"},{"section":"awselasticblockstorevolumesource-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[{"section":"-strong-read-operations-strong--448","subsections":[{"section":"watch-list-all-namespaces-453"},{"section":"watch-452"},{"section":"list-all-namespaces-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":"tokenreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--440","subsections":[{"section":"create-441"}]}]},{"section":"subjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--438","subsections":[{"section":"create-439"}]}]},{"section":"serviceaccount-v1","subsections":[{"section":"-strong-read-operations-strong--431","subsections":[{"section":"watch-list-all-namespaces-437"},{"section":"watch-list-436"},{"section":"watch-435"},{"section":"list-all-namespaces-434"},{"section":"list-433"},{"section":"read-432"}]},{"section":"-strong-write-operations-strong--425","subsections":[{"section":"delete-collection-430"},{"section":"delete-429"},{"section":"patch-428"},{"section":"replace-427"},{"section":"create-426"}]}]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--423","subsections":[{"section":"create-424"}]}]},{"section":"rolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--416","subsections":[{"section":"watch-list-all-namespaces-422"},{"section":"watch-list-421"},{"section":"watch-420"},{"section":"list-all-namespaces-419"},{"section":"list-418"},{"section":"read-417"}]},{"section":"-strong-write-operations-strong--410","subsections":[{"section":"delete-collection-415"},{"section":"delete-414"},{"section":"patch-413"},{"section":"replace-412"},{"section":"create-411"}]}]},{"section":"role-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--403","subsections":[{"section":"watch-list-all-namespaces-409"},{"section":"watch-list-408"},{"section":"watch-407"},{"section":"list-all-namespaces-406"},{"section":"list-405"},{"section":"read-404"}]},{"section":"-strong-write-operations-strong--397","subsections":[{"section":"delete-collection-402"},{"section":"delete-401"},{"section":"patch-400"},{"section":"replace-399"},{"section":"create-398"}]}]},{"section":"resourcequota-v1","subsections":[{"section":"-strong-status-operations-strong--393","subsections":[{"section":"replace-status-396"},{"section":"read-status-395"},{"section":"patch-status-394"}]},{"section":"-strong-read-operations-strong--387","subsections":[{"section":"watch-list-all-namespaces-392"},{"section":"watch-391"},{"section":"list-all-namespaces-390"},{"section":"list-389"},{"section":"read-388"}]},{"section":"-strong-write-operations-strong--381","subsections":[{"section":"delete-collection-386"},{"section":"delete-385"},{"section":"patch-384"},{"section":"replace-383"},{"section":"create-382"}]}]},{"section":"persistentvolume-v1","subsections":[{"section":"-strong-status-operations-strong--377","subsections":[{"section":"replace-status-380"},{"section":"read-status-379"},{"section":"patch-status-378"}]},{"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":"node-v1","subsections":[{"section":"-strong-proxy-operations-strong--347","subsections":[{"section":"replace-proxy-path-365"},{"section":"replace-proxy-364"},{"section":"replace-connect-proxy-path-363"},{"section":"replace-connect-proxy-362"},{"section":"head-connect-proxy-path-361"},{"section":"head-connect-proxy-360"},{"section":"get-proxy-path-359"},{"section":"get-proxy-358"},{"section":"get-connect-proxy-path-357"},{"section":"get-connect-proxy-356"},{"section":"delete-proxy-path-355"},{"section":"delete-proxy-354"},{"section":"delete-connect-proxy-path-353"},{"section":"delete-connect-proxy-352"},{"section":"create-proxy-path-351"},{"section":"create-proxy-350"},{"section":"create-connect-proxy-path-349"},{"section":"create-connect-proxy-348"}]},{"section":"-strong-read-operations-strong--343","subsections":[{"section":"watch-346"},{"section":"list-345"},{"section":"read-344"}]},{"section":"-strong-write-operations-strong--337","subsections":[{"section":"delete-collection-342"},{"section":"delete-341"},{"section":"patch-340"},{"section":"replace-339"},{"section":"create-338"}]}]},{"section":"namespace-v1","subsections":[{"section":"-strong-read-operations-strong--333","subsections":[{"section":"watch-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":"localsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--325","subsections":[{"section":"create-326"}]}]},{"section":"componentstatus-v1","subsections":[{"section":"-strong-read-operations-strong--322","subsections":[{"section":"list-324"},{"section":"read-323"}]}]},{"section":"clusterrolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--317","subsections":[{"section":"watch-list-321"},{"section":"watch-320"},{"section":"list-319"},{"section":"read-318"}]},{"section":"-strong-write-operations-strong--311","subsections":[{"section":"delete-collection-316"},{"section":"delete-315"},{"section":"patch-314"},{"section":"replace-313"},{"section":"create-312"}]}]},{"section":"clusterrole-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--307","subsections":[{"section":"watch-310"},{"section":"list-309"},{"section":"read-308"}]},{"section":"-strong-write-operations-strong--301","subsections":[{"section":"delete-collection-306"},{"section":"delete-305"},{"section":"patch-304"},{"section":"replace-303"},{"section":"create-302"}]}]},{"section":"certificatesigningrequest-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--297","subsections":[{"section":"watch-300"},{"section":"list-299"},{"section":"read-298"}]},{"section":"-strong-write-operations-strong--291","subsections":[{"section":"delete-collection-296"},{"section":"delete-295"},{"section":"patch-294"},{"section":"replace-293"},{"section":"create-292"}]}]},{"section":"binding-v1","subsections":[{"section":"-strong-write-operations-strong--289","subsections":[{"section":"create-290"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[{"section":"-strong-read-operations-strong--285","subsections":[{"section":"watch-288"},{"section":"list-287"},{"section":"read-286"}]},{"section":"-strong-write-operations-strong--279","subsections":[{"section":"delete-collection-284"},{"section":"delete-283"},{"section":"patch-282"},{"section":"replace-281"},{"section":"create-280"}]}]},{"section":"poddisruptionbudget-v1beta1","subsections":[{"section":"-strong-read-operations-strong--273","subsections":[{"section":"watch-list-all-namespaces-278"},{"section":"watch-277"},{"section":"list-all-namespaces-276"},{"section":"list-275"},{"section":"read-274"}]},{"section":"-strong-write-operations-strong--267","subsections":[{"section":"delete-collection-272"},{"section":"delete-271"},{"section":"patch-270"},{"section":"replace-269"},{"section":"create-268"}]}]},{"section":"podtemplate-v1","subsections":[{"section":"-strong-read-operations-strong--261","subsections":[{"section":"watch-list-all-namespaces-266"},{"section":"watch-265"},{"section":"list-all-namespaces-264"},{"section":"list-263"},{"section":"read-262"}]},{"section":"-strong-write-operations-strong--255","subsections":[{"section":"delete-collection-260"},{"section":"delete-259"},{"section":"patch-258"},{"section":"replace-257"},{"section":"create-256"}]}]},{"section":"horizontalpodautoscaler-v1","subsections":[{"section":"-strong-read-operations-strong--249","subsections":[{"section":"watch-list-all-namespaces-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":"limitrange-v1","subsections":[{"section":"-strong-read-operations-strong--237","subsections":[{"section":"watch-list-all-namespaces-242"},{"section":"watch-241"},{"section":"list-all-namespaces-240"},{"section":"list-239"},{"section":"read-238"}]},{"section":"-strong-write-operations-strong--231","subsections":[{"section":"delete-collection-236"},{"section":"delete-235"},{"section":"patch-234"},{"section":"replace-233"},{"section":"create-232"}]}]},{"section":"event-v1","subsections":[{"section":"-strong-read-operations-strong--225","subsections":[{"section":"watch-list-all-namespaces-230"},{"section":"watch-229"},{"section":"list-all-namespaces-228"},{"section":"list-227"},{"section":"read-226"}]},{"section":"-strong-write-operations-strong--219","subsections":[{"section":"delete-collection-224"},{"section":"delete-223"},{"section":"patch-222"},{"section":"replace-221"},{"section":"create-220"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[{"section":"-strong-read-operations-strong--215","subsections":[{"section":"watch-218"},{"section":"list-217"},{"section":"read-216"}]},{"section":"-strong-write-operations-strong--209","subsections":[{"section":"delete-collection-214"},{"section":"delete-213"},{"section":"patch-212"},{"section":"replace-211"},{"section":"create-210"}]}]},{"section":"persistentvolumeclaim-v1","subsections":[{"section":"-strong-status-operations-strong--205","subsections":[{"section":"replace-status-208"},{"section":"read-status-207"},{"section":"patch-status-206"}]},{"section":"-strong-read-operations-strong--199","subsections":[{"section":"watch-list-all-namespaces-204"},{"section":"watch-203"},{"section":"list-all-namespaces-202"},{"section":"list-201"},{"section":"read-200"}]},{"section":"-strong-write-operations-strong--193","subsections":[{"section":"delete-collection-198"},{"section":"delete-197"},{"section":"patch-196"},{"section":"replace-195"},{"section":"create-194"}]}]},{"section":"secret-v1","subsections":[{"section":"-strong-read-operations-strong--186","subsections":[{"section":"watch-list-all-namespaces-192"},{"section":"watch-list-191"},{"section":"watch-190"},{"section":"list-all-namespaces-189"},{"section":"list-188"},{"section":"read-187"}]},{"section":"-strong-write-operations-strong--180","subsections":[{"section":"delete-collection-185"},{"section":"delete-184"},{"section":"patch-183"},{"section":"replace-182"},{"section":"create-181"}]}]},{"section":"configmap-v1","subsections":[{"section":"-strong-read-operations-strong--174","subsections":[{"section":"watch-list-all-namespaces-179"},{"section":"watch-178"},{"section":"list-all-namespaces-177"},{"section":"list-176"},{"section":"read-175"}]},{"section":"-strong-write-operations-strong--168","subsections":[{"section":"delete-collection-173"},{"section":"delete-172"},{"section":"patch-171"},{"section":"replace-170"},{"section":"create-169"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[{"section":"-strong-proxy-operations-strong--149","subsections":[{"section":"replace-proxy-path-167"},{"section":"replace-proxy-166"},{"section":"replace-connect-proxy-path-165"},{"section":"replace-connect-proxy-164"},{"section":"head-connect-proxy-path-163"},{"section":"head-connect-proxy-162"},{"section":"get-proxy-path-161"},{"section":"get-proxy-160"},{"section":"get-connect-proxy-path-159"},{"section":"get-connect-proxy-158"},{"section":"delete-proxy-path-157"},{"section":"delete-proxy-156"},{"section":"delete-connect-proxy-path-155"},{"section":"delete-connect-proxy-154"},{"section":"create-proxy-path-153"},{"section":"create-proxy-152"},{"section":"create-connect-proxy-path-151"},{"section":"create-connect-proxy-150"}]},{"section":"-strong-status-operations-strong--145","subsections":[{"section":"replace-status-148"},{"section":"read-status-147"},{"section":"patch-status-146"}]},{"section":"-strong-read-operations-strong--139","subsections":[{"section":"watch-list-all-namespaces-144"},{"section":"watch-143"},{"section":"list-all-namespaces-142"},{"section":"list-141"},{"section":"read-140"}]},{"section":"-strong-write-operations-strong--134","subsections":[{"section":"delete-138"},{"section":"patch-137"},{"section":"replace-136"},{"section":"create-135"}]}]},{"section":"ingress-v1beta1","subsections":[{"section":"-strong-read-operations-strong--128","subsections":[{"section":"watch-list-all-namespaces-133"},{"section":"watch-132"},{"section":"list-all-namespaces-131"},{"section":"list-130"},{"section":"read-129"}]},{"section":"-strong-write-operations-strong--122","subsections":[{"section":"delete-collection-127"},{"section":"delete-126"},{"section":"patch-125"},{"section":"replace-124"},{"section":"create-123"}]}]},{"section":"endpoints-v1","subsections":[{"section":"-strong-read-operations-strong--115","subsections":[{"section":"watch-list-all-namespaces-121"},{"section":"watch-list-120"},{"section":"watch-119"},{"section":"list-all-namespaces-118"},{"section":"list-117"},{"section":"read-116"}]},{"section":"-strong-write-operations-strong--109","subsections":[{"section":"delete-collection-114"},{"section":"delete-113"},{"section":"patch-112"},{"section":"replace-111"},{"section":"create-110"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[{"section":"-strong-status-operations-strong--105","subsections":[{"section":"replace-status-108"},{"section":"read-status-107"},{"section":"patch-status-106"}]},{"section":"-strong-read-operations-strong--98","subsections":[{"section":"watch-list-all-namespaces-104"},{"section":"watch-list-103"},{"section":"watch-102"},{"section":"list-all-namespaces-101"},{"section":"list-100"},{"section":"read-99"}]},{"section":"-strong-write-operations-strong--92","subsections":[{"section":"delete-collection-97"},{"section":"delete-96"},{"section":"patch-95"},{"section":"replace-94"},{"section":"create-93"}]}]},{"section":"replicationcontroller-v1","subsections":[{"section":"-strong-read-operations-strong--86","subsections":[{"section":"watch-list-all-namespaces-91"},{"section":"watch-90"},{"section":"list-all-namespaces-89"},{"section":"list-88"},{"section":"read-87"}]},{"section":"-strong-write-operations-strong--80","subsections":[{"section":"delete-collection-85"},{"section":"delete-84"},{"section":"patch-83"},{"section":"replace-82"},{"section":"create-81"}]}]},{"section":"replicaset-v1beta1","subsections":[{"section":"-strong-misc-operations-strong--76","subsections":[{"section":"patch-scale-79"},{"section":"replace-scale-78"},{"section":"read-scale-77"}]},{"section":"-strong-read-operations-strong--69","subsections":[{"section":"watch-list-all-namespaces-75"},{"section":"watch-list-74"},{"section":"watch-73"},{"section":"list-all-namespaces-72"},{"section":"list-71"},{"section":"read-70"}]},{"section":"-strong-write-operations-strong--63","subsections":[{"section":"delete-collection-68"},{"section":"delete-67"},{"section":"patch-66"},{"section":"replace-65"},{"section":"create-64"}]}]},{"section":"pod-v1","subsections":[{"section":"-strong-misc-operations-strong--62","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-read-operations-strong--55","subsections":[{"section":"watch-list-all-namespaces-61"},{"section":"watch-list-60"},{"section":"watch-59"},{"section":"list-all-namespaces-58"},{"section":"list-57"},{"section":"read-56"}]},{"section":"-strong-write-operations-strong--49","subsections":[{"section":"delete-collection-54"},{"section":"delete-53"},{"section":"patch-52"},{"section":"replace-51"},{"section":"create-50"}]}]},{"section":"job-v1","subsections":[{"section":"-strong-read-operations-strong--42","subsections":[{"section":"watch-list-all-namespaces-48"},{"section":"watch-list-47"},{"section":"watch-46"},{"section":"list-all-namespaces-45"},{"section":"list-44"},{"section":"read-43"}]},{"section":"-strong-write-operations-strong--36","subsections":[{"section":"delete-collection-41"},{"section":"delete-40"},{"section":"patch-39"},{"section":"replace-38"},{"section":"create-37"}]}]},{"section":"deployment-v1beta1","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"},{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"section":"-strong-status-operations-strong--32","subsections":[{"section":"replace-status-35"},{"section":"read-status-34"},{"section":"patch-status-33"}]},{"section":"-strong-read-operations-strong--25","subsections":[{"section":"watch-list-all-namespaces-31"},{"section":"watch-list-30"},{"section":"watch-29"},{"section":"list-all-namespaces-28"},{"section":"list-27"},{"section":"read-26"}]},{"section":"-strong-write-operations-strong--19","subsections":[{"section":"delete-collection-24"},{"section":"delete-23"},{"section":"patch-22"},{"section":"replace-21"},{"section":"create-20"}]}]},{"section":"daemonset-v1beta1","subsections":[{"section":"-strong-status-operations-strong--15","subsections":[{"section":"replace-status-18"},{"section":"read-status-17"},{"section":"patch-status-16"}]},{"section":"-strong-read-operations-strong--9","subsections":[{"section":"watch-list-all-namespaces-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","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","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","watch-list-all-namespaces-489","watch-488","list-all-namespaces-487","list-486","read-485","-strong-read-operations-strong--484","delete-collection-483","delete-482","patch-481","replace-480","create-479","-strong-write-operations-strong--478","job-v2alpha1","watch-list-all-namespaces-477","watch-476","list-all-namespaces-475","list-474","read-473","-strong-read-operations-strong--472","delete-collection-471","delete-470","patch-469","replace-468","create-467","-strong-write-operations-strong--466","job-v1beta1","watch-list-all-namespaces-465","watch-464","list-all-namespaces-463","list-462","read-461","-strong-read-operations-strong--460","delete-collection-459","delete-458","patch-457","replace-456","create-455","-strong-write-operations-strong--454","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","vspherevirtualdiskvolumesource-v1","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretvolumesource-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","rbdvolumesource-v1","quobytevolumesource-v1","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","photonpersistentdiskvolumesource-v1","persistentvolumeclaimvolumesource-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","nfsvolumesource-v1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","keytopath-v1","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","iscsivolumesource-v1","hostpathvolumesource-v1","handler-v1","httpingressrulevalue-v1beta1","httpingresspath-v1beta1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","glusterfsvolumesource-v1","gitrepovolumesource-v1","gcepersistentdiskvolumesource-v1","flockervolumesource-v1","flexvolumesource-v1","fcvolumesource-v1","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","emptydirvolumesource-v1","downwardapivolumesource-v1","downwardapivolumefile-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapvolumesource-v1","configmapkeyselector-v1","componentcondition-v1","cindervolumesource-v1","certificatesigningrequestcondition-v1alpha1","cephfsvolumesource-v1","capabilities-v1","cputargetutilization-v1beta1","azurefilevolumesource-v1","azurediskvolumesource-v1","attachedvolume-v1","awselasticblockstorevolumesource-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","watch-list-all-namespaces-453","watch-452","list-all-namespaces-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","networkpolicy-v1beta1","create-441","-strong-write-operations-strong--440","tokenreview-v1beta1","create-439","-strong-write-operations-strong--438","subjectaccessreview-v1beta1","watch-list-all-namespaces-437","watch-list-436","watch-435","list-all-namespaces-434","list-433","read-432","-strong-read-operations-strong--431","delete-collection-430","delete-429","patch-428","replace-427","create-426","-strong-write-operations-strong--425","serviceaccount-v1","create-424","-strong-write-operations-strong--423","selfsubjectaccessreview-v1beta1","watch-list-all-namespaces-422","watch-list-421","watch-420","list-all-namespaces-419","list-418","read-417","-strong-read-operations-strong--416","delete-collection-415","delete-414","patch-413","replace-412","create-411","-strong-write-operations-strong--410","rolebinding-v1alpha1","watch-list-all-namespaces-409","watch-list-408","watch-407","list-all-namespaces-406","list-405","read-404","-strong-read-operations-strong--403","delete-collection-402","delete-401","patch-400","replace-399","create-398","-strong-write-operations-strong--397","role-v1alpha1","replace-status-396","read-status-395","patch-status-394","-strong-status-operations-strong--393","watch-list-all-namespaces-392","watch-391","list-all-namespaces-390","list-389","read-388","-strong-read-operations-strong--387","delete-collection-386","delete-385","patch-384","replace-383","create-382","-strong-write-operations-strong--381","resourcequota-v1","replace-status-380","read-status-379","patch-status-378","-strong-status-operations-strong--377","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","persistentvolume-v1","replace-proxy-path-365","replace-proxy-364","replace-connect-proxy-path-363","replace-connect-proxy-362","head-connect-proxy-path-361","head-connect-proxy-360","get-proxy-path-359","get-proxy-358","get-connect-proxy-path-357","get-connect-proxy-356","delete-proxy-path-355","delete-proxy-354","delete-connect-proxy-path-353","delete-connect-proxy-352","create-proxy-path-351","create-proxy-350","create-connect-proxy-path-349","create-connect-proxy-348","-strong-proxy-operations-strong--347","watch-346","list-345","read-344","-strong-read-operations-strong--343","delete-collection-342","delete-341","patch-340","replace-339","create-338","-strong-write-operations-strong--337","node-v1","watch-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","namespace-v1","create-326","-strong-write-operations-strong--325","localsubjectaccessreview-v1beta1","list-324","read-323","-strong-read-operations-strong--322","componentstatus-v1","watch-list-321","watch-320","list-319","read-318","-strong-read-operations-strong--317","delete-collection-316","delete-315","patch-314","replace-313","create-312","-strong-write-operations-strong--311","clusterrolebinding-v1alpha1","watch-310","list-309","read-308","-strong-read-operations-strong--307","delete-collection-306","delete-305","patch-304","replace-303","create-302","-strong-write-operations-strong--301","clusterrole-v1alpha1","watch-300","list-299","read-298","-strong-read-operations-strong--297","delete-collection-296","delete-295","patch-294","replace-293","create-292","-strong-write-operations-strong--291","certificatesigningrequest-v1alpha1","create-290","-strong-write-operations-strong--289","binding-v1","-strong-cluster-strong-","watch-288","list-287","read-286","-strong-read-operations-strong--285","delete-collection-284","delete-283","patch-282","replace-281","create-280","-strong-write-operations-strong--279","thirdpartyresource-v1beta1","watch-list-all-namespaces-278","watch-277","list-all-namespaces-276","list-275","read-274","-strong-read-operations-strong--273","delete-collection-272","delete-271","patch-270","replace-269","create-268","-strong-write-operations-strong--267","poddisruptionbudget-v1beta1","watch-list-all-namespaces-266","watch-265","list-all-namespaces-264","list-263","read-262","-strong-read-operations-strong--261","delete-collection-260","delete-259","patch-258","replace-257","create-256","-strong-write-operations-strong--255","podtemplate-v1","watch-list-all-namespaces-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","horizontalpodautoscaler-v1","watch-list-all-namespaces-242","watch-241","list-all-namespaces-240","list-239","read-238","-strong-read-operations-strong--237","delete-collection-236","delete-235","patch-234","replace-233","create-232","-strong-write-operations-strong--231","limitrange-v1","watch-list-all-namespaces-230","watch-229","list-all-namespaces-228","list-227","read-226","-strong-read-operations-strong--225","delete-collection-224","delete-223","patch-222","replace-221","create-220","-strong-write-operations-strong--219","event-v1","-strong-metadata-strong-","volume-v1","watch-218","list-217","read-216","-strong-read-operations-strong--215","delete-collection-214","delete-213","patch-212","replace-211","create-210","-strong-write-operations-strong--209","storageclass-v1beta1","replace-status-208","read-status-207","patch-status-206","-strong-status-operations-strong--205","watch-list-all-namespaces-204","watch-203","list-all-namespaces-202","list-201","read-200","-strong-read-operations-strong--199","delete-collection-198","delete-197","patch-196","replace-195","create-194","-strong-write-operations-strong--193","persistentvolumeclaim-v1","watch-list-all-namespaces-192","watch-list-191","watch-190","list-all-namespaces-189","list-188","read-187","-strong-read-operations-strong--186","delete-collection-185","delete-184","patch-183","replace-182","create-181","-strong-write-operations-strong--180","secret-v1","watch-list-all-namespaces-179","watch-178","list-all-namespaces-177","list-176","read-175","-strong-read-operations-strong--174","delete-collection-173","delete-172","patch-171","replace-170","create-169","-strong-write-operations-strong--168","configmap-v1","-strong-config-storage-strong-","replace-proxy-path-167","replace-proxy-166","replace-connect-proxy-path-165","replace-connect-proxy-164","head-connect-proxy-path-163","head-connect-proxy-162","get-proxy-path-161","get-proxy-160","get-connect-proxy-path-159","get-connect-proxy-158","delete-proxy-path-157","delete-proxy-156","delete-connect-proxy-path-155","delete-connect-proxy-154","create-proxy-path-153","create-proxy-152","create-connect-proxy-path-151","create-connect-proxy-150","-strong-proxy-operations-strong--149","replace-status-148","read-status-147","patch-status-146","-strong-status-operations-strong--145","watch-list-all-namespaces-144","watch-143","list-all-namespaces-142","list-141","read-140","-strong-read-operations-strong--139","delete-138","patch-137","replace-136","create-135","-strong-write-operations-strong--134","service-v1","watch-list-all-namespaces-133","watch-132","list-all-namespaces-131","list-130","read-129","-strong-read-operations-strong--128","delete-collection-127","delete-126","patch-125","replace-124","create-123","-strong-write-operations-strong--122","ingress-v1beta1","watch-list-all-namespaces-121","watch-list-120","watch-119","list-all-namespaces-118","list-117","read-116","-strong-read-operations-strong--115","delete-collection-114","delete-113","patch-112","replace-111","create-110","-strong-write-operations-strong--109","endpoints-v1","-strong-discovery-load-balancing-strong-","replace-status-108","read-status-107","patch-status-106","-strong-status-operations-strong--105","watch-list-all-namespaces-104","watch-list-103","watch-102","list-all-namespaces-101","list-100","read-99","-strong-read-operations-strong--98","delete-collection-97","delete-96","patch-95","replace-94","create-93","-strong-write-operations-strong--92","statefulset-v1beta1","watch-list-all-namespaces-91","watch-90","list-all-namespaces-89","list-88","read-87","-strong-read-operations-strong--86","delete-collection-85","delete-84","patch-83","replace-82","create-81","-strong-write-operations-strong--80","replicationcontroller-v1","patch-scale-79","replace-scale-78","read-scale-77","-strong-misc-operations-strong--76","watch-list-all-namespaces-75","watch-list-74","watch-73","list-all-namespaces-72","list-71","read-70","-strong-read-operations-strong--69","delete-collection-68","delete-67","patch-66","replace-65","create-64","-strong-write-operations-strong--63","replicaset-v1beta1","read-log","-strong-misc-operations-strong--62","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-","watch-list-all-namespaces-61","watch-list-60","watch-59","list-all-namespaces-58","list-57","read-56","-strong-read-operations-strong--55","delete-collection-54","delete-53","patch-52","replace-51","create-50","-strong-write-operations-strong--49","pod-v1","watch-list-all-namespaces-48","watch-list-47","watch-46","list-all-namespaces-45","list-44","read-43","-strong-read-operations-strong--42","delete-collection-41","delete-40","patch-39","replace-38","create-37","-strong-write-operations-strong--36","job-v1","rollback","patch-scale","replace-scale","read-scale","-strong-misc-operations-strong-","replace-status-35","read-status-34","patch-status-33","-strong-status-operations-strong--32","watch-list-all-namespaces-31","watch-list-30","watch-29","list-all-namespaces-28","list-27","read-26","-strong-read-operations-strong--25","delete-collection-24","delete-23","patch-22","replace-21","create-20","-strong-write-operations-strong--19","deployment-v1beta1","replace-status-18","read-status-17","patch-status-16","-strong-status-operations-strong--15","watch-list-all-namespaces-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","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","container-v1","-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.5/documents/_generated_apigroup_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md index d7cbddabc9..d4732c1cea 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md @@ -22,6 +22,8 @@ Appears In APIGroupList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | name is the name of the group. preferredVersion
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. @@ -34,7 +36,9 @@ versions
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversione Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md b/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md index ecd323fb0c..d6d1173eb5 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md @@ -13,6 +13,8 @@ Appears In APIGroupList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | name is the name of the group. preferredVersion
*[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. diff --git a/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md index 30c2b10a97..99c9d0d8fe 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md @@ -21,7 +21,9 @@ APIGroupList is a list of APIGroup, to allow clients to discover the API at /api Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md b/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md index ceec2e96f3..6267bf8f48 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md @@ -12,5 +12,7 @@ APIGroupList is a list of APIGroup, to allow clients to discover the API at /api Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groups
*[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md index da0db93926..2f87ebff79 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md @@ -33,7 +33,9 @@ namespaced
*boolean* | namespaced indicates if a resource is namespaced Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md index 7094c8d3ea..5bb170d54c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md @@ -21,7 +21,9 @@ APIResourceList is a list of APIResource, it is used to expose the name of the r Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md b/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md index adb1d939dd..b5b7649e2f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md @@ -12,6 +12,8 @@ APIResourceList is a list of APIResource, it is used to expose the name of the r Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources groupVersion
*string* | groupVersion is the group and version this APIResourceList is for. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds resources
*[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. diff --git a/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md index 03be0bc7bd..31aa6a658a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md @@ -21,6 +21,8 @@ APIVersions lists the versions that are available, to allow clients to discover Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. versions
*string array* | versions are the api versions that are available. diff --git a/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md b/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md index b3ead69c61..3513f89da7 100644 --- a/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md @@ -12,6 +12,8 @@ APIVersions lists the versions that are available, to allow clients to discover Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds serverAddressByClientCIDRs
*[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. versions
*string array* | versions are the api versions that are available. diff --git a/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md new file mode 100644 index 0000000000..9dda8fcf2a --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# AWSElasticBlockStoreVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AWSElasticBlockStoreVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). +readOnly
*boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +volumeID
*string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md new file mode 100644 index 0000000000..3c4d7e2d21 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## AWSElasticBlockStoreVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AWSElasticBlockStoreVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). +readOnly
*boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +volumeID
*string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + diff --git a/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md new file mode 100644 index 0000000000..1043b9d9ae --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# AzureDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureDiskVolumeSource + + + + + + + +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +cachingMode
*string* | Host Caching mode: None, Read Only, Read Write. +diskName
*string* | The Name of the data disk in the blob storage +diskURI
*string* | The URI the data disk in the blob storage +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md new file mode 100644 index 0000000000..191a407952 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## AzureDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureDiskVolumeSource + + + +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +cachingMode
*string* | Host Caching mode: None, Read Only, Read Write. +diskName
*string* | The Name of the data disk in the blob storage +diskURI
*string* | The URI the data disk in the blob storage +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. + diff --git a/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md new file mode 100644 index 0000000000..a9dc6186b1 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# AzureFileVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureFileVolumeSource + + + + + + + +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretName
*string* | the name of secret that contains Azure Storage Account Name and Key +shareName
*string* | Share Name + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md new file mode 100644 index 0000000000..2382e73e4c --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## AzureFileVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | AzureFileVolumeSource + + + +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + + +Field | Description +------------ | ----------- +readOnly
*boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretName
*string* | the name of secret that contains Azure Storage Account Name and Key +shareName
*string* | Share Name + diff --git a/docs/resources-reference/v1.5/documents/_generated_binding_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_binding_v1_concept.md index a25b98f50f..ee02af2267 100644 --- a/docs/resources-reference/v1.5/documents/_generated_binding_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_binding_v1_concept.md @@ -21,6 +21,8 @@ Binding ties one object to another. For example, a pod is bound to a node by a s Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata target
*[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. diff --git a/docs/resources-reference/v1.5/documents/_generated_binding_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_binding_v1_definition.md index 59adcd0427..32e2a31908 100644 --- a/docs/resources-reference/v1.5/documents/_generated_binding_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_binding_v1_definition.md @@ -12,6 +12,8 @@ Binding ties one object to another. For example, a pod is bound to a node by a s Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata target
*[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. diff --git a/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..1911dac73b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# CephFSVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CephFSVolumeSource + + + + + + + +Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +monitors
*string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +path
*string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretFile
*string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +user
*string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..d672f53c08 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## CephFSVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CephFSVolumeSource + + + +Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +monitors
*string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +path
*string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretFile
*string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it +user
*string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it + diff --git a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md index 6a6fb133fd..48755e9d1f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In CertificateSigningR Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. status
*[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. @@ -55,7 +57,9 @@ conditions
*[CertificateSigningRequestCondition](#certificatesigningreque Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md index 73aa27e1aa..4e4341316e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In
CertificateSigning Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. status
*[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. diff --git a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md index d67ab588c5..712e294f01 100644 --- a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md @@ -21,7 +21,9 @@ Core | v1alpha1 | CertificateSigningRequestList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md index 51c4e6f342..351962b063 100644 --- a/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md @@ -12,6 +12,8 @@ Core | v1alpha1 | CertificateSigningRequestList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md new file mode 100644 index 0000000000..d31493f61a --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# CinderVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CinderVolumeSource + + + + + + + +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. + +
+ +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +volumeID
*string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md new file mode 100644 index 0000000000..670fb61930 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## CinderVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | CinderVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +volumeID
*string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md index 1704c0726c..5af5658772 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In ClusterRoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole @@ -32,7 +34,9 @@ rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the P Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md index d9cba64a95..0a99bcf054 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In ClusterRoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md index d949156548..cab1e888c3 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In ClusterRoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. @@ -33,7 +35,9 @@ subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds reference Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md index 52e998bec4..2399cf6562 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In ClusterRoleBindingList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md index 68e0b478c2..a43a158ede 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md @@ -21,7 +21,9 @@ ClusterRoleBindingList is a collection of ClusterRoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md index 8cb35e443f..d2c0dbcf80 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md @@ -12,6 +12,8 @@ ClusterRoleBindingList is a collection of ClusterRoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md index fc2468dc6e..71aae4c153 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md @@ -21,7 +21,9 @@ ClusterRoleList is a collection of ClusterRoles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md index de3b45bd16..d36c6bff0e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md @@ -12,6 +12,8 @@ ClusterRoleList is a collection of ClusterRoles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_concept.md index d03596d082..8188da8893 100644 --- a/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_concept.md @@ -22,7 +22,9 @@ Appears In ComponentStatusList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources conditions
*[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -32,7 +34,9 @@ metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. Mo Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_definition.md index e341d6f384..efbd73394a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_definition.md @@ -13,6 +13,8 @@ Appears In ComponentStatusList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources conditions
*[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md index 812ce55079..b4445da385 100644 --- a/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md @@ -21,7 +21,9 @@ Status of all the conditions for the component as a list of ComponentStatus obje Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md index b1944475b2..02c154761e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md @@ -12,6 +12,8 @@ Status of all the conditions for the component as a list of ComponentStatus obje Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_configmap_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_configmap_v1_concept.md index dc1110f7e0..3a174aed15 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmap_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmap_v1_concept.md @@ -22,7 +22,9 @@ Appears In ConfigMapList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -32,7 +34,9 @@ metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. Mo Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_configmap_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_configmap_v1_definition.md index 8fc7e1587e..b5864ad664 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmap_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmap_v1_definition.md @@ -13,6 +13,8 @@ Appears In ConfigMapList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md index a602f360e4..8cb9c40d2d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md @@ -23,6 +23,7 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key to select. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md index cfb66d4cd7..00e98b82bb 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md @@ -14,4 +14,5 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key to select. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_concept.md index cb63a2e0ef..a0c4f0a530 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_concept.md @@ -21,7 +21,9 @@ ConfigMapList is a resource containing a list of ConfigMap objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_definition.md index 1e88bdb0d7..32e00ed55e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_definition.md @@ -12,6 +12,8 @@ ConfigMapList is a resource containing a list of ConfigMap objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md new file mode 100644 index 0000000000..5dd5e2b183 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# ConfigMapVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ConfigMapVolumeSource + + + + + + + +Adapts a ConfigMap into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md new file mode 100644 index 0000000000..e171a6f0d6 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## ConfigMapVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ConfigMapVolumeSource + + + +Adapts a ConfigMap into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names + diff --git a/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md index 295b8d753e..6183cb7889 100644 --- a/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md @@ -22,6 +22,8 @@ Appears In CronJobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -56,7 +58,9 @@ lastScheduleTime
*[Time](#time-unversioned)* | LastScheduleTime keeps in Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md index 0cc274bf72..ec4284e0b7 100644 --- a/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md @@ -13,6 +13,8 @@ Appears In CronJobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md index b77f09d318..f63337e893 100644 --- a/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md @@ -21,7 +21,9 @@ CronJobList is a collection of cron jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md index bc440f14da..9c0f2059d8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md @@ -12,6 +12,8 @@ CronJobList is a collection of cron jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md index 2361f6f67f..7e0e43a04c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md @@ -53,6 +53,8 @@ Appears In DaemonSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[DaemonSetSpec](#daemonsetspec-v1beta1)* | Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[DaemonSetStatus](#daemonsetstatus-v1beta1)* | Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -86,7 +88,9 @@ numberReady
*integer* | NumberReady is the number of nodes that should b Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md index efe0c4d88d..a403cd596e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In DaemonSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[DaemonSetSpec](#daemonsetspec-v1beta1)* | Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[DaemonSetStatus](#daemonsetstatus-v1beta1)* | Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md index c22521c81e..8de7e7421b 100644 --- a/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md @@ -21,7 +21,9 @@ DaemonSetList is a collection of daemon sets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md index 8ccfbfd6bd..887a392bc4 100644 --- a/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md @@ -12,6 +12,8 @@ DaemonSetList is a collection of daemon sets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[DaemonSet](#daemonset-v1beta1) array* | Items is a list of daemon sets. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md index 6c93799473..761715e2a5 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md @@ -22,7 +22,9 @@ Appears In Eviction Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources gracePeriodSeconds
*integer* | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds orphanDependents
*boolean* | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. preconditions
*[Preconditions](#preconditions-v1)* | Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. diff --git a/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md index f80a9faa84..c48a6834aa 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md @@ -13,7 +13,9 @@ Appears In Eviction Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources gracePeriodSeconds
*integer* | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds orphanDependents
*boolean* | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. preconditions
*[Preconditions](#preconditions-v1)* | Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. diff --git a/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md index 3c04b49ce0..01686a144c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md @@ -15,8 +15,8 @@ metadata: spec: # 3 Pods should exist at all times. replicas: 3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit: 10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit: 2 template: metadata: labels: @@ -50,6 +50,8 @@ Appears In DeploymentList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. spec
*[DeploymentSpec](#deploymentspec-v1beta1)* | Specification of the desired behavior of the Deployment. status
*[DeploymentStatus](#deploymentstatus-v1beta1)* | Most recently observed status of the Deployment. @@ -92,7 +94,9 @@ updatedReplicas
*integer* | Total number of non-terminated pods targeted Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. ### DeploymentStrategy v1beta1 @@ -111,6 +115,8 @@ type
*string* | Type of deployment. Can be "Recreate" or "RollingUpdate" Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment diff --git a/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md index 6cb8e39bcb..9697712b28 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In DeploymentList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. spec
*[DeploymentSpec](#deploymentspec-v1beta1)* | Specification of the desired behavior of the Deployment. status
*[DeploymentStatus](#deploymentstatus-v1beta1)* | Most recently observed status of the Deployment. diff --git a/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md index d52e0cd593..bdf4905e2f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md @@ -21,7 +21,9 @@ DeploymentList is a list of Deployments. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md index ade93da4a1..c14fbead74 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md @@ -12,6 +12,8 @@ DeploymentList is a list of Deployments. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Deployment](#deployment-v1beta1) array* | Items is the list of Deployments. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md index 2aba30d0ca..99f95e00eb 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md @@ -21,6 +21,8 @@ DeploymentRollback stores the information required to rollback a deployment. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment diff --git a/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md index 488a27e29f..40f828f6ae 100644 --- a/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md @@ -12,6 +12,8 @@ DeploymentRollback stores the information required to rollback a deployment. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds name
*string* | Required: This must match the Name of a deployment. rollbackTo
*[RollbackConfig](#rollbackconfig-v1beta1)* | The config of this deployment rollback. updatedAnnotations
*object* | The annotations to be updated to a deployment diff --git a/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md new file mode 100644 index 0000000000..a71251d5a4 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md @@ -0,0 +1,34 @@ + + +----------- +# DownwardAPIVolumeFile v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeFile + + + + + + + +DownwardAPIVolumeFile represents information to create the file containing the pod field + + + +Field | Description +------------ | ----------- +fieldRef
*[ObjectFieldSelector](#objectfieldselector-v1)* | Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' +resourceFieldRef
*[ResourceFieldSelector](#resourcefieldselector-v1)* | Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md new file mode 100644 index 0000000000..1551ed1ddf --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md @@ -0,0 +1,20 @@ +## DownwardAPIVolumeFile v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeFile + + + +DownwardAPIVolumeFile represents information to create the file containing the pod field + + + +Field | Description +------------ | ----------- +fieldRef
*[ObjectFieldSelector](#objectfieldselector-v1)* | Required: Selects a field of the pod: only annotations, labels, name and namespace are supported. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' +resourceFieldRef
*[ResourceFieldSelector](#resourcefieldselector-v1)* | Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + diff --git a/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md new file mode 100644 index 0000000000..1e7faa3e0a --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# DownwardAPIVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeSource + + + + + + + +DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[DownwardAPIVolumeFile](#downwardapivolumefile-v1) array* | Items is a list of downward API volume file + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md new file mode 100644 index 0000000000..7cee35155f --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## DownwardAPIVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | DownwardAPIVolumeSource + + + +DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[DownwardAPIVolumeFile](#downwardapivolumefile-v1) array* | Items is a list of downward API volume file + diff --git a/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md new file mode 100644 index 0000000000..d46dace5fb --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# EmptyDirVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | EmptyDirVolumeSource + + + + + + + +Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +medium
*string* | What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md new file mode 100644 index 0000000000..32cde1bbd7 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md @@ -0,0 +1,17 @@ +## EmptyDirVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | EmptyDirVolumeSource + + + +Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +medium
*string* | What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir + diff --git a/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_concept.md index 8fbbb92e2c..24957c84a1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_concept.md @@ -33,6 +33,8 @@ Appears In EndpointsList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata subsets
*[EndpointSubset](#endpointsubset-v1) array* | 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. @@ -43,7 +45,9 @@ subsets
*[EndpointSubset](#endpointsubset-v1) array* | The set of all en Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_definition.md index f0762826f4..6a9e205157 100644 --- a/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_endpoints_v1_definition.md @@ -24,6 +24,8 @@ Appears In EndpointsList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata subsets
*[EndpointSubset](#endpointsubset-v1) array* | 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. diff --git a/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_concept.md index a86cd00d15..f50b6f092e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_concept.md @@ -21,7 +21,9 @@ EndpointsList is a list of endpoints. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_definition.md index af940aa424..532f821e9a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_definition.md @@ -12,6 +12,8 @@ EndpointsList is a list of endpoints. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Endpoints](#endpoints-v1) array* | List of endpoints. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_event_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_event_v1_concept.md index 2d8ce66569..5034c38cfb 100644 --- a/docs/resources-reference/v1.5/documents/_generated_event_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_event_v1_concept.md @@ -22,9 +22,11 @@ Appears In EventList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources count
*integer* | The number of times this event has occurred. firstTimestamp
*[Time](#time-unversioned)* | The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) involvedObject
*[ObjectReference](#objectreference-v1)* | The object that this event is about. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds lastTimestamp
*[Time](#time-unversioned)* | The time at which the most recent occurrence of this event was recorded. message
*string* | A human-readable description of the status of this operation. metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -39,7 +41,9 @@ type
*string* | Type of this event (Normal, Warning), new types could be Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_event_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_event_v1_definition.md index 6b4cc740f3..5333f9785c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_event_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_event_v1_definition.md @@ -13,9 +13,11 @@ Appears In EventList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources count
*integer* | The number of times this event has occurred. firstTimestamp
*[Time](#time-unversioned)* | The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) involvedObject
*[ObjectReference](#objectreference-v1)* | The object that this event is about. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds lastTimestamp
*[Time](#time-unversioned)* | The time at which the most recent occurrence of this event was recorded. message
*string* | A human-readable description of the status of this operation. metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_concept.md index 35db7a83de..01eb942a6d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_concept.md @@ -21,7 +21,9 @@ EventList is a list of events. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_definition.md index cd4442b41e..c168720694 100644 --- a/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_eventlist_v1_definition.md @@ -12,6 +12,8 @@ EventList is a list of events. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Event](#event-v1) array* | List of events +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md index 5aecddc85d..c50f9d2979 100644 --- a/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md @@ -21,7 +21,9 @@ Eviction evicts a pod from its node subject to certain policies and safety const Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources deleteOptions
*[DeleteOptions](#deleteoptions-v1)* | DeleteOptions may be provided +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | ObjectMeta describes the pod that is being evicted. diff --git a/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md index ff42320589..0444d0f3d6 100644 --- a/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md @@ -12,6 +12,8 @@ Eviction evicts a pod from its node subject to certain policies and safety const Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources deleteOptions
*[DeleteOptions](#deleteoptions-v1)* | DeleteOptions may be provided +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | ObjectMeta describes the pod that is being evicted. diff --git a/docs/resources-reference/v1.5/documents/_generated_execaction_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_execaction_v1_concept.md index f0534c5e20..e0177fe5f8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_execaction_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_execaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ExecAction ExecAction describes a "run in container" action. +Appears In HandlerProbe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_execaction_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_execaction_v1_definition.md index c1252f3e2d..135d7e0e2a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_execaction_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_execaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ExecAction ExecAction describes a "run in container" action. +Appears In HandlerProbe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md new file mode 100644 index 0000000000..cd6f9af1a6 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md @@ -0,0 +1,34 @@ + + +----------- +# FCVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FCVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +lun
*integer* | Required: FC target lun number +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +targetWWNs
*string array* | Required: FC target worldwide names (WWNs) + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md new file mode 100644 index 0000000000..8a82f89ba3 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md @@ -0,0 +1,20 @@ +## FCVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FCVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +lun
*integer* | Required: FC target lun number +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +targetWWNs
*string array* | Required: FC target worldwide names (WWNs) + diff --git a/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md new file mode 100644 index 0000000000..604820a53d --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# FlexVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlexVolumeSource + + + + + + + +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. + + + +Field | Description +------------ | ----------- +driver
*string* | Driver is the name of the driver to use for this volume. +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. +options
*object* | Optional: Extra command options if any. +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | 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. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md new file mode 100644 index 0000000000..89becb095a --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## FlexVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlexVolumeSource + + + +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. + + + +Field | Description +------------ | ----------- +driver
*string* | Driver is the name of the driver to use for this volume. +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. +options
*object* | Optional: Extra command options if any. +readOnly
*boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | 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. + diff --git a/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md new file mode 100644 index 0000000000..d686fad3f0 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# FlockerVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlockerVolumeSource + + + + + + + +Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +datasetName
*string* | Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated +datasetUUID
*string* | UUID of the dataset. This is unique identifier of a Flocker dataset + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md new file mode 100644 index 0000000000..aaccc59415 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## FlockerVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | FlockerVolumeSource + + + +Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +datasetName
*string* | Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated +datasetUUID
*string* | UUID of the dataset. This is unique identifier of a Flocker dataset + diff --git a/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..c79a6a8656 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# GCEPersistentDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GCEPersistentDiskVolumeSource + + + + + + + +Represents a Persistent Disk resource in Google Compute Engine. + +A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +pdName
*string* | Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..1ab931a590 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## GCEPersistentDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GCEPersistentDiskVolumeSource + + + +Represents a Persistent Disk resource in Google Compute Engine. + +A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +partition
*integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +pdName
*string* | Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + diff --git a/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md new file mode 100644 index 0000000000..d7223cd468 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# GitRepoVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GitRepoVolumeSource + + + + + + + +Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + + + +Field | Description +------------ | ----------- +directory
*string* | Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. +repository
*string* | Repository URL +revision
*string* | Commit hash for the specified revision. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md new file mode 100644 index 0000000000..9a23f42f22 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## GitRepoVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GitRepoVolumeSource + + + +Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + + + +Field | Description +------------ | ----------- +directory
*string* | Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. +repository
*string* | Repository URL +revision
*string* | Commit hash for the specified revision. + diff --git a/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..ae30b3b81b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# GlusterfsVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GlusterfsVolumeSource + + + + + + + +Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +endpoints
*string* | EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +path
*string* | Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +readOnly
*boolean* | ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..718f3f399b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## GlusterfsVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | GlusterfsVolumeSource + + + +Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +endpoints
*string* | EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +path
*string* | Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod +readOnly
*boolean* | ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md index b440e56f1e..c143035033 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md @@ -22,6 +22,8 @@ Appears In HorizontalPodAutoscalerList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1)* | current information about the autoscaler. @@ -58,7 +60,9 @@ observedGeneration
*integer* | most recent generation observed by this a Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md index 267cdd7c96..d92ecda48c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md @@ -13,6 +13,8 @@ Appears In
HorizontalPodAutoscalerLis Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1)* | current information about the autoscaler. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md index 5e6d1031fe..c83a19e1e9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In
HorizontalPodAutoscale Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1beta1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1beta1)* | current information about the autoscaler. @@ -58,7 +60,9 @@ observedGeneration
*integer* | most recent generation observed by this a Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md index 03aa7f55ac..29089ea09e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In
HorizontalPodAutoscal Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[HorizontalPodAutoscalerSpec](#horizontalpodautoscalerspec-v1beta1)* | behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[HorizontalPodAutoscalerStatus](#horizontalpodautoscalerstatus-v1beta1)* | current information about the autoscaler. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md index 42b9e4e918..7b00859b4a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md @@ -21,7 +21,9 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md index acd71a1e16..53252c69c6 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md @@ -12,6 +12,8 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md index 41af694354..a1fa044966 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md @@ -21,7 +21,9 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md index 0ed9e6031b..6c1252b236 100644 --- a/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md @@ -12,6 +12,8 @@ list of horizontal pod autoscaler objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[HorizontalPodAutoscaler](#horizontalpodautoscaler-v1beta1) array* | list of horizontal pod autoscaler objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md new file mode 100644 index 0000000000..03edbc950b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# HostPathVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | HostPathVolumeSource + + + + + + + +Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. + +
+ +Field | Description +------------ | ----------- +path
*string* | Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md new file mode 100644 index 0000000000..9e57efa973 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md @@ -0,0 +1,17 @@ +## HostPathVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | HostPathVolumeSource + + + +Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath + diff --git a/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md index 0d12f7a5de..fa5307dd3e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | HTTPGetAction HTTPGetAction describes an action based on HTTP Get requests. +Appears In HandlerProbe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md index 62fc070768..201a7a1d86 100644 --- a/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | HTTPGetAction HTTPGetAction describes an action based on HTTP Get requests. +Appears In HandlerProbe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md new file mode 100644 index 0000000000..6a2513881c --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# HTTPIngressPath v1beta1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressPath + + + + + + + +HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. + + + +Field | Description +------------ | ----------- +backend
*[IngressBackend](#ingressbackend-v1beta1)* | Backend defines the referenced service endpoint to which the traffic will be forwarded to. +path
*string* | Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md new file mode 100644 index 0000000000..0c7cd2c177 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md @@ -0,0 +1,18 @@ +## HTTPIngressPath v1beta1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressPath + + + +HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend. + + + +Field | Description +------------ | ----------- +backend
*[IngressBackend](#ingressbackend-v1beta1)* | Backend defines the referenced service endpoint to which the traffic will be forwarded to. +path
*string* | Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. + diff --git a/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md new file mode 100644 index 0000000000..3e01adf4a4 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md @@ -0,0 +1,31 @@ + + +----------- +# HTTPIngressRuleValue v1beta1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressRuleValue + + + + + + + +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 '#'. + + + +Field | Description +------------ | ----------- +paths
*[HTTPIngressPath](#httpingresspath-v1beta1) array* | A collection of paths that map requests to backends. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md new file mode 100644 index 0000000000..534492f88d --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md @@ -0,0 +1,17 @@ +## HTTPIngressRuleValue v1beta1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1beta1 | HTTPIngressRuleValue + + + +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 '#'. + + + +Field | Description +------------ | ----------- +paths
*[HTTPIngressPath](#httpingresspath-v1beta1) array* | A collection of paths that map requests to backends. + diff --git a/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md index df973edfe3..eab64ede06 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In IngressList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[IngressSpec](#ingressspec-v1beta1)* | Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[IngressStatus](#ingressstatus-v1beta1)* | Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -53,7 +55,9 @@ loadBalancer
*[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md index 2277dda95a..a62361acf4 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In IngressList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[IngressSpec](#ingressspec-v1beta1)* | Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[IngressStatus](#ingressstatus-v1beta1)* | Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md index e189eb8c45..a4ba6ae6a6 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md @@ -18,7 +18,7 @@ Core | v1beta1 | IngressBackend IngressBackend describes all endpoints for a given service and port. +Appears In HTTPIngressPath IngressSpec Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md index ba53262708..847e7ac0fa 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md @@ -9,7 +9,7 @@ Core | v1beta1 | IngressBackend IngressBackend describes all endpoints for a given service and port. +Appears In HTTPIngressPath IngressSpec Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md index 299114a699..2663ecd30c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md @@ -21,7 +21,9 @@ IngressList is a collection of Ingress. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md index b2f5d47f25..f74bdcb5f6 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md @@ -12,6 +12,8 @@ IngressList is a collection of Ingress. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Ingress](#ingress-v1beta1) array* | Items is the list of Ingress. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md index 5f5aecc1ea..c9124eccb8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md @@ -23,6 +23,7 @@ Appears In IngressSpec Field | Description ------------ | ----------- host
*string* | 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. +http
*[HTTPIngressRuleValue](#httpingressrulevalue-v1beta1)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md index 392ee9214b..87106d629a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md @@ -14,4 +14,5 @@ Appears In IngressSpec Field | Description ------------ | ----------- host
*string* | 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. +http
*[HTTPIngressRuleValue](#httpingressrulevalue-v1beta1)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md new file mode 100644 index 0000000000..9637f04f63 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md @@ -0,0 +1,36 @@ + + +----------- +# ISCSIVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ISCSIVolumeSource + + + + + + + +Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi +iqn
*string* | Target iSCSI Qualified Name. +iscsiInterface
*string* | Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. +lun
*integer* | iSCSI target lun number. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. +targetPortal
*string* | iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md new file mode 100644 index 0000000000..446a306bcf --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md @@ -0,0 +1,22 @@ +## ISCSIVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | ISCSIVolumeSource + + + +Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi +iqn
*string* | Target iSCSI Qualified Name. +iscsiInterface
*string* | Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. +lun
*integer* | iSCSI target lun number. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. +targetPortal
*string* | iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). + diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_job_v1_concept.md index 6b6c61c355..179d6518e7 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v1_concept.md @@ -46,6 +46,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -85,7 +87,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_job_v1_definition.md index 988fce312e..6c4af927c1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_concept.md index 5e26238c31..c7eaec0320 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1beta1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1beta1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -61,7 +63,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_definition.md index 003f35ff45..3f63d83414 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v1beta1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v1beta1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_concept.md index 9fc7015362..2a4bc06e66 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_concept.md @@ -22,6 +22,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -61,7 +63,9 @@ succeeded
*integer* | Succeeded is the number of pods which reached Phas Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_definition.md index 2f4775194a..95aca8c9c3 100644 --- a/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_definition.md @@ -13,6 +13,8 @@ Appears In JobList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[JobSpec](#jobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[JobStatus](#jobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v1_concept.md index e8522f804e..49d7ff396f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v1_concept.md @@ -21,7 +21,9 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v1_definition.md index 7b34e34cf7..e2eab3a6f5 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v1_definition.md @@ -12,6 +12,8 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md index 14466b13cd..37dfaf50ca 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md @@ -21,7 +21,9 @@ JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is depre Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md index caae13ec38..5671bb5f98 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md @@ -12,6 +12,8 @@ JobList is a collection of jobs. DEPRECATED: extensions/v1beta1.JobList is depre Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v1beta1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md index c2e0f69f6b..61c5e2413d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md @@ -21,7 +21,9 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md index 5ebcfd1a5c..64ec8d6aea 100644 --- a/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md @@ -12,6 +12,8 @@ JobList is a collection of jobs. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Job](#job-v2alpha1) array* | Items is the list of Job. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_concept.md new file mode 100644 index 0000000000..54d1cc0953 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# KeyToPath v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | KeyToPath + + + + + + + +Maps a string key to a path within a volume. + + + +Field | Description +------------ | ----------- +key
*string* | The key to project. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_definition.md new file mode 100644 index 0000000000..615f9131f2 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_keytopath_v1_definition.md @@ -0,0 +1,19 @@ +## KeyToPath v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | KeyToPath + + + +Maps a string key to a path within a volume. + + + +Field | Description +------------ | ----------- +key
*string* | The key to project. +mode
*integer* | Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. +path
*string* | The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. + diff --git a/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_concept.md index 243a35d2a2..db884e7b08 100644 --- a/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_concept.md @@ -22,6 +22,8 @@ Appears In LimitRangeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[LimitRangeSpec](#limitrangespec-v1)* | Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -41,7 +43,9 @@ limits
*[LimitRangeItem](#limitrangeitem-v1) array* | Limits is the list Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_definition.md index 53e7ca483c..5f2c44911d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_limitrange_v1_definition.md @@ -13,6 +13,8 @@ Appears In LimitRangeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[LimitRangeSpec](#limitrangespec-v1)* | Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md index 9e66bd28bb..a951e344ba 100644 --- a/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md @@ -21,7 +21,9 @@ LimitRangeList is a list of LimitRange items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md index f2246e916c..f482b33ac8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md @@ -12,6 +12,8 @@ LimitRangeList is a list of LimitRange items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[LimitRange](#limitrange-v1) array* | Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md index 4ad41b1c2a..d8d3fcadfc 100644 --- a/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | LocalObjectReference LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. +Appears In CephFSVolumeSource FlexVolumeSource PodSpec RBDVolumeSource ServiceAccount Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md index dee0b8b8be..561ffc419c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | LocalObjectReference LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. +Appears In CephFSVolumeSource FlexVolumeSource PodSpec RBDVolumeSource ServiceAccount Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md index 47b3b3b88f..ec666fcdb0 100644 --- a/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ LocalSubjectAccessReview checks whether or not a user or group can perform an ac Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | 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. status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md index af5ae3648c..a5f14a8e4e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ LocalSubjectAccessReview checks whether or not a user or group can perform an ac Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | 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. status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_namespace_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_namespace_v1_concept.md index 5c45daa7a7..3292c08bef 100644 --- a/docs/resources-reference/v1.5/documents/_generated_namespace_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_namespace_v1_concept.md @@ -22,6 +22,8 @@ Appears In NamespaceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NamespaceSpec](#namespacespec-v1)* | Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NamespaceStatus](#namespacestatus-v1)* | Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -51,7 +53,9 @@ phase
*string* | Phase is the current lifecycle phase of the namespace. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_namespace_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_namespace_v1_definition.md index 5c3d3a38ea..86146344cf 100644 --- a/docs/resources-reference/v1.5/documents/_generated_namespace_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_namespace_v1_definition.md @@ -13,6 +13,8 @@ Appears In NamespaceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NamespaceSpec](#namespacespec-v1)* | Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NamespaceStatus](#namespacestatus-v1)* | Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_concept.md index f02292c8d2..7f4bcac5d8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_concept.md @@ -21,7 +21,9 @@ NamespaceList is a list of Namespaces. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_definition.md index 6fc4a2890a..ca5cdccd19 100644 --- a/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_definition.md @@ -12,6 +12,8 @@ NamespaceList is a list of Namespaces. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Namespace](#namespace-v1) array* | Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md index 91375d7ad3..26a506193c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In NetworkPolicyList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NetworkPolicySpec](#networkpolicyspec-v1beta1)* | Specification of the desired behavior for this NetworkPolicy. @@ -42,7 +44,9 @@ podSelector
*[LabelSelector](#labelselector-unversioned)* | Selects the Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md index 173ab3c143..63ee5471f6 100644 --- a/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In NetworkPolicyList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NetworkPolicySpec](#networkpolicyspec-v1beta1)* | Specification of the desired behavior for this NetworkPolicy. diff --git a/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md index ed3eeaa240..2050470f0b 100644 --- a/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md @@ -21,7 +21,9 @@ Network Policy List is a list of NetworkPolicy objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md index b85720ac6b..51ee21119c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md @@ -12,6 +12,8 @@ Network Policy List is a list of NetworkPolicy objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[NetworkPolicy](#networkpolicy-v1beta1) array* | Items is a list of schema objects. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md new file mode 100644 index 0000000000..a419519c19 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md @@ -0,0 +1,33 @@ + + +----------- +# NFSVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | NFSVolumeSource + + + + + + + +Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +readOnly
*boolean* | ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +server
*string* | Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md new file mode 100644 index 0000000000..23c2266305 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md @@ -0,0 +1,19 @@ +## NFSVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | NFSVolumeSource + + + +Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +path
*string* | Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +readOnly
*boolean* | ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs +server
*string* | Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + diff --git a/docs/resources-reference/v1.5/documents/_generated_node_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_node_v1_concept.md index 97cfea185d..36e36b3960 100644 --- a/docs/resources-reference/v1.5/documents/_generated_node_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_node_v1_concept.md @@ -22,6 +22,8 @@ Appears In NodeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NodeSpec](#nodespec-v1)* | Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NodeStatus](#nodestatus-v1)* | Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -63,7 +65,9 @@ volumesInUse
*string array* | List of attachable volumes in use (mounted Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_node_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_node_v1_definition.md index 7875b6524c..7350491116 100644 --- a/docs/resources-reference/v1.5/documents/_generated_node_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_node_v1_definition.md @@ -13,6 +13,8 @@ Appears In NodeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[NodeSpec](#nodespec-v1)* | Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[NodeStatus](#nodestatus-v1)* | Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_concept.md index 29e6b7468b..e996e2faee 100644 --- a/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_concept.md @@ -21,7 +21,9 @@ NodeList is the whole list of all Nodes which have been registered with master. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_definition.md index 498c387346..8a5ae1fec2 100644 --- a/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_nodelist_v1_definition.md @@ -12,6 +12,8 @@ NodeList is the whole list of all Nodes which have been registered with master. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Node](#node-v1) array* | List of nodes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md index 5835566e59..2a8743365c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ObjectFieldSelector ObjectFieldSelector selects an APIVersioned field of an object. +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md index 5596a3bc5c..fe41b9f8cf 100644 --- a/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ObjectFieldSelector ObjectFieldSelector selects an APIVersioned field of an object. +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md index 7f295fdb54..092ed3554c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md @@ -22,6 +22,8 @@ Appears In PersistentVolumeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeSpec](#persistentvolumespec-v1)* | Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes status
*[PersistentVolumeStatus](#persistentvolumestatus-v1)* | Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes @@ -35,9 +37,26 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine ### PersistentVolumeStatus v1 @@ -56,7 +75,9 @@ reason
*string* | Reason is a brief CamelCase string that describes any Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md index c9818773cd..81b1e13b13 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md @@ -13,6 +13,8 @@ Appears In PersistentVolumeList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeSpec](#persistentvolumespec-v1)* | Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes status
*[PersistentVolumeStatus](#persistentvolumestatus-v1)* | Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md index 49df30fbb0..b47e3071a0 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md @@ -22,6 +22,8 @@ Appears In PersistentVolumeClaimList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeClaimSpec](#persistentvolumeclaimspec-v1)* | Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims status
*[PersistentVolumeClaimStatus](#persistentvolumeclaimstatus-v1)* | Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims @@ -56,7 +58,9 @@ phase
*string* | Phase represents the current phase of PersistentVolumeC Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md index 2ceb13be3f..ed24250a7d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md @@ -13,6 +13,8 @@ Appears In PersistentVolumeClaimList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PersistentVolumeClaimSpec](#persistentvolumeclaimspec-v1)* | Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims status
*[PersistentVolumeClaimStatus](#persistentvolumeclaimstatus-v1)* | Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md index a166d1139e..c26ad5f03a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md @@ -21,7 +21,9 @@ PersistentVolumeClaimList is a list of PersistentVolumeClaim items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md index c15333e8ce..ba451dcd49 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md @@ -12,6 +12,8 @@ PersistentVolumeClaimList is a list of PersistentVolumeClaim items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolumeClaim](#persistentvolumeclaim-v1) array* | A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md new file mode 100644 index 0000000000..42afa5695b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# PersistentVolumeClaimVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PersistentVolumeClaimVolumeSource + + + + + + + +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). + + + +Field | Description +------------ | ----------- +claimName
*string* | ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +readOnly
*boolean* | Will force the ReadOnly setting in VolumeMounts. Default false. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md new file mode 100644 index 0000000000..2dab66437f --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## PersistentVolumeClaimVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PersistentVolumeClaimVolumeSource + + + +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). + + + +Field | Description +------------ | ----------- +claimName
*string* | ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +readOnly
*boolean* | Will force the ReadOnly setting in VolumeMounts. Default false. + diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md index 2699818efb..5cfa5408e1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md @@ -21,7 +21,9 @@ PersistentVolumeList is a list of PersistentVolume items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md index 86133472c9..6fbcb0485f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md @@ -12,6 +12,8 @@ PersistentVolumeList is a list of PersistentVolume items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PersistentVolume](#persistentvolume-v1) array* | List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md index 5fa83806ee..db953210a9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md @@ -23,9 +23,26 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md index f84aade0ef..3f2de1dcda 100644 --- a/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md @@ -14,7 +14,24 @@ Appears In PersistentVolume Field | Description ------------ | ----------- accessModes
*string array* | AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. capacity
*object* | A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md claimRef
*[ObjectReference](#objectreference-v1)* | 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 +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | 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 +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs persistentVolumeReclaimPolicy
*string* | What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..4559d83f7b --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# PhotonPersistentDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PhotonPersistentDiskVolumeSource + + + + + + + +Represents a Photon Controller persistent disk resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +pdID
*string* | ID that identifies Photon Controller persistent disk + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..08e975b605 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## PhotonPersistentDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | PhotonPersistentDiskVolumeSource + + + +Represents a Photon Controller persistent disk resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +pdID
*string* | ID that identifies Photon Controller persistent disk + diff --git a/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md index c25f094ff6..6f6dd45764 100644 --- a/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md @@ -8,7 +8,7 @@ ```bdocs-tab:example_yaml apiVersion: v1 -kind: Pod +kind: Pob metadata: name: pod-example spec: @@ -38,6 +38,8 @@ Appears In PodList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[PodStatus](#podstatus-v1)* | Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -90,7 +92,9 @@ startTime
*[Time](#time-unversioned)* | RFC 3339 date and time at which Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_pod_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_pod_v1_definition.md index 027987ff72..17b6cd7aa8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_pod_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_pod_v1_definition.md @@ -13,6 +13,8 @@ Appears In PodList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[PodStatus](#podstatus-v1)* | Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md index ba35e305e0..6d1846979e 100644 --- a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md @@ -22,6 +22,8 @@ Appears In PodDisruptionBudgetList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[PodDisruptionBudgetSpec](#poddisruptionbudgetspec-v1beta1)* | Specification of the desired behavior of the PodDisruptionBudget. status
*[PodDisruptionBudgetStatus](#poddisruptionbudgetstatus-v1beta1)* | Most recently observed status of the PodDisruptionBudget. @@ -57,7 +59,9 @@ observedGeneration
*integer* | Most recent generation observed when upda Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md index d8b413506c..6b64a85734 100644 --- a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In PodDisruptionBudgetList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[PodDisruptionBudgetSpec](#poddisruptionbudgetspec-v1beta1)* | Specification of the desired behavior of the PodDisruptionBudget. status
*[PodDisruptionBudgetStatus](#poddisruptionbudgetstatus-v1beta1)* | Most recently observed status of the PodDisruptionBudget. diff --git a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md index 8f3fb74836..f1726bdcf4 100644 --- a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md @@ -21,7 +21,9 @@ PodDisruptionBudgetList is a collection of PodDisruptionBudgets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md index ec5c11604a..0f8839465a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md @@ -12,6 +12,8 @@ PodDisruptionBudgetList is a collection of PodDisruptionBudgets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodDisruptionBudget](#poddisruptionbudget-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_podlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_podlist_v1_concept.md index 926e66ecc1..3a47c0152c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_podlist_v1_concept.md @@ -21,7 +21,9 @@ PodList is a list of Pods. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_podlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_podlist_v1_definition.md index 387747e46d..5545fc1b38 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_podlist_v1_definition.md @@ -12,6 +12,8 @@ PodList is a list of Pods. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Pod](#pod-v1) array* | List of pods. More info: http://kubernetes.io/docs/user-guide/pods +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_concept.md index 071871717a..4848b07c03 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_concept.md @@ -22,6 +22,8 @@ Appears In
PodTemplateList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata template
*[PodTemplateSpec](#podtemplatespec-v1)* | Template defines the pods that will be created from this pod template. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -42,7 +44,9 @@ spec
*[PodSpec](#podspec-v1)* | Specification of the desired behavior of Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_definition.md index 55578c1283..1ae4f21f4f 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_definition.md @@ -13,6 +13,8 @@ Appears In PodTemplateList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata template
*[PodTemplateSpec](#podtemplatespec-v1)* | Template defines the pods that will be created from this pod template. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md index 226b6a0e91..da600b3be1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md @@ -21,7 +21,9 @@ PodTemplateList is a list of PodTemplates. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md index e948c98fe3..58c8bacc98 100644 --- a/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md @@ -12,6 +12,8 @@ PodTemplateList is a list of PodTemplates. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[PodTemplate](#podtemplate-v1) array* | List of pod templates +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_probe_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_probe_v1_concept.md index 97c6dc9b17..97b746fc89 100644 --- a/docs/resources-reference/v1.5/documents/_generated_probe_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_probe_v1_concept.md @@ -22,10 +22,13 @@ Appears In Container Field | Description ------------ | ----------- +exec
*[ExecAction](#execaction-v1)* | One and only one of the following should be specified. Exec specifies the action to take. failureThreshold
*integer* | Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. +httpGet
*[HTTPGetAction](#httpgetaction-v1)* | HTTPGet specifies the http request to perform. initialDelaySeconds
*integer* | Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes periodSeconds
*integer* | How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. successThreshold
*integer* | 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. +tcpSocket
*[TCPSocketAction](#tcpsocketaction-v1)* | TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported timeoutSeconds
*integer* | Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes diff --git a/docs/resources-reference/v1.5/documents/_generated_probe_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_probe_v1_definition.md index ea0f4f5e86..3a721cb685 100644 --- a/docs/resources-reference/v1.5/documents/_generated_probe_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_probe_v1_definition.md @@ -13,9 +13,12 @@ Appears In Container Field | Description ------------ | ----------- +exec
*[ExecAction](#execaction-v1)* | One and only one of the following should be specified. Exec specifies the action to take. failureThreshold
*integer* | Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. +httpGet
*[HTTPGetAction](#httpgetaction-v1)* | HTTPGet specifies the http request to perform. initialDelaySeconds
*integer* | Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes periodSeconds
*integer* | How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. successThreshold
*integer* | 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. +tcpSocket
*[TCPSocketAction](#tcpsocketaction-v1)* | TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported timeoutSeconds
*integer* | Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes diff --git a/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md new file mode 100644 index 0000000000..f4d6f69efa --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# QuobyteVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | QuobyteVolumeSource + + + + + + + +Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +group
*string* | Group to map volume access to Default is no group +readOnly
*boolean* | ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. +registry
*string* | Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes +user
*string* | User to map volume access to Defaults to serivceaccount user +volume
*string* | Volume is a string that references an already created Quobyte volume by name. + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md new file mode 100644 index 0000000000..5888abc381 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## QuobyteVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | QuobyteVolumeSource + + + +Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. + + + +Field | Description +------------ | ----------- +group
*string* | Group to map volume access to Default is no group +readOnly
*boolean* | ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. +registry
*string* | Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes +user
*string* | User to map volume access to Defaults to serivceaccount user +volume
*string* | Volume is a string that references an already created Quobyte volume by name. + diff --git a/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md new file mode 100644 index 0000000000..da4f80a349 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md @@ -0,0 +1,38 @@ + + +----------- +# RBDVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | RBDVolumeSource + + + + + + + +Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd +image
*string* | The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +keyring
*string* | Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +monitors
*string array* | A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +pool
*string* | The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +user
*string* | The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md new file mode 100644 index 0000000000..55509076eb --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md @@ -0,0 +1,24 @@ +## RBDVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | RBDVolumeSource + + + +Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd +image
*string* | The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +keyring
*string* | Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +monitors
*string array* | A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +pool
*string* | The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it. +readOnly
*boolean* | ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +secretRef
*[LocalObjectReference](#localobjectreference-v1)* | SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it +user
*string* | The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it + diff --git a/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md index 21ebb3bb1a..d8963e5795 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md @@ -46,6 +46,8 @@ Appears In ReplicaSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicaSetSpec](#replicasetspec-v1beta1)* | Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicaSetStatus](#replicasetstatus-v1beta1)* | Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -83,7 +85,9 @@ replicas
*integer* | Replicas is the most recently oberved number of rep Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md index 7916a429a8..f91b7921de 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md @@ -13,6 +13,8 @@ Appears In ReplicaSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicaSetSpec](#replicasetspec-v1beta1)* | Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicaSetStatus](#replicasetstatus-v1beta1)* | Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md index e37e6fe96e..dcbd8df7ad 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md @@ -21,7 +21,9 @@ ReplicaSetList is a collection of ReplicaSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md index 8a22471e45..d22b230f36 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md @@ -12,6 +12,8 @@ ReplicaSetList is a collection of ReplicaSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicaSet](#replicaset-v1beta1) array* | List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md index 718944803e..a2d568749d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md @@ -46,6 +46,8 @@ Appears In ReplicationControllerList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicationControllerSpec](#replicationcontrollerspec-v1)* | Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicationControllerStatus](#replicationcontrollerstatus-v1)* | Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -83,7 +85,9 @@ replicas
*integer* | Replicas is the most recently oberved number of rep Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md index 83aeb79572..5883492c10 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md @@ -13,6 +13,8 @@ Appears In ReplicationControllerList *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ReplicationControllerSpec](#replicationcontrollerspec-v1)* | Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ReplicationControllerStatus](#replicationcontrollerstatus-v1)* | Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md index b06c979221..403d092676 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md @@ -21,7 +21,9 @@ ReplicationControllerList is a collection of replication controllers. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md index cec4edf9ff..5b62592c04 100644 --- a/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md @@ -12,6 +12,8 @@ ReplicationControllerList is a collection of replication controllers. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ReplicationController](#replicationcontroller-v1) array* | List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md index 7bd87539dc..42dc21a36c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | ResourceFieldSelector ResourceFieldSelector represents container resources (cpu, memory) and their output format +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md index 594e03a9bf..4a11f704c8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | ResourceFieldSelector ResourceFieldSelector represents container resources (cpu, memory) and their output format +Appears In DownwardAPIVolumeFile EnvVarSource Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_concept.md index f32c08dc1f..369080fe5c 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_concept.md @@ -22,6 +22,8 @@ Appears In ResourceQuotaList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ResourceQuotaSpec](#resourcequotaspec-v1)* | Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ResourceQuotaStatus](#resourcequotastatus-v1)* | Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -53,7 +55,9 @@ used
*object* | Used is the current observed total usage of the resource Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_definition.md index 98d2c6c082..24202b22a4 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_definition.md @@ -13,6 +13,8 @@ Appears In ResourceQuotaList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ResourceQuotaSpec](#resourcequotaspec-v1)* | Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ResourceQuotaStatus](#resourcequotastatus-v1)* | Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md index a059598249..a54d8b8b9d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md @@ -21,7 +21,9 @@ ResourceQuotaList is a list of ResourceQuota items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md index 097c8f654a..a29d357ec0 100644 --- a/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md @@ -12,6 +12,8 @@ ResourceQuotaList is a list of ResourceQuota items. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ResourceQuota](#resourcequota-v1) array* | Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_concept.md index debe487223..af05dd11e9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In RoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this Role @@ -32,7 +34,9 @@ rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the P Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_definition.md index a7ea8a493d..72fdc92a9a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In RoleList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. rules
*[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this Role diff --git a/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md index ea473ac9a1..977b374de1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md @@ -22,6 +22,8 @@ Appears In RoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | 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. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. @@ -33,7 +35,9 @@ subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds reference Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md index 3baf9ac2e3..72dec8c9aa 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md @@ -13,6 +13,8 @@ Appears In RoleBindingList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. roleRef
*[RoleRef](#roleref-v1alpha1)* | 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. subjects
*[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. diff --git a/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md index f7820c6f84..bc8dbb696a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md @@ -21,7 +21,9 @@ RoleBindingList is a collection of RoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md index 0fe8d8484a..934b1ab718 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md @@ -12,6 +12,8 @@ RoleBindingList is a collection of RoleBindings Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[RoleBinding](#rolebinding-v1alpha1) array* | Items is a list of RoleBindings +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md b/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md index e371149d08..1cf13066f4 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md @@ -21,7 +21,9 @@ RoleList is a collection of Roles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md b/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md index f98ba074fa..bef7a9fbdf 100644 --- a/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md @@ -12,6 +12,8 @@ RoleList is a collection of Roles Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Role](#role-v1alpha1) array* | Items is a list of Roles +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard object's metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_scale_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_scale_v1_concept.md index c8d3630951..0dbb567ab1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_scale_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_scale_v1_concept.md @@ -21,6 +21,8 @@ Scale represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/resources-reference/v1.5/documents/_generated_scale_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_scale_v1_definition.md index ddbbb854ee..2f015eae27 100644 --- a/docs/resources-reference/v1.5/documents/_generated_scale_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_scale_v1_definition.md @@ -12,6 +12,8 @@ Scale represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_concept.md index 087c4a7379..8dfa87193a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_concept.md @@ -21,6 +21,8 @@ represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1beta1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1beta1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_definition.md index 0ba6ea4b71..c40ef182a3 100644 --- a/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_definition.md @@ -12,6 +12,8 @@ represents a scaling request for a resource. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. spec
*[ScaleSpec](#scalespec-v1beta1)* | defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. status
*[ScaleStatus](#scalestatus-v1beta1)* | current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only. diff --git a/docs/resources-reference/v1.5/documents/_generated_secret_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_secret_v1_concept.md index bce9593daa..0019d48529 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secret_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_secret_v1_concept.md @@ -22,7 +22,9 @@ Appears In SecretList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata stringData
*object* | stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. type
*string* | Used to facilitate programmatic handling of secret data. @@ -34,7 +36,9 @@ type
*string* | Used to facilitate programmatic handling of secret data. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_secret_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_secret_v1_definition.md index 301c2d08d1..4a78639ee2 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secret_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_secret_v1_definition.md @@ -13,7 +13,9 @@ Appears In SecretList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources data
*object* | Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata stringData
*object* | stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API. type
*string* | Used to facilitate programmatic handling of secret data. diff --git a/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md index bc1d20414e..efa6b6576d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md @@ -23,6 +23,7 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key of the secret to select from. Must be a valid secret key. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md index c1308987e5..203d83b153 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md @@ -14,4 +14,5 @@ Appears In EnvVarSource Field | Description ------------ | ----------- key
*string* | The key of the secret to select from. Must be a valid secret key. +name
*string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names diff --git a/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_concept.md index ecec9a92b7..61adf3b2fd 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_concept.md @@ -21,7 +21,9 @@ SecretList is a list of Secret. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_definition.md index 0b7f8190ff..e45bae7a36 100644 --- a/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_secretlist_v1_definition.md @@ -12,6 +12,8 @@ SecretList is a list of Secret. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Secret](#secret-v1) array* | Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md new file mode 100644 index 0000000000..75dcbee1bf --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md @@ -0,0 +1,35 @@ + + +----------- +# SecretVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | SecretVolumeSource + + + + + + + +Adapts a Secret into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +secretName
*string* | Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md new file mode 100644 index 0000000000..ba85a75451 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md @@ -0,0 +1,21 @@ +## SecretVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | SecretVolumeSource + + + +Adapts a Secret into a volume. + +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. + + + +Field | Description +------------ | ----------- +defaultMode
*integer* | 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. +items
*[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. +secretName
*string* | Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets + diff --git a/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md index 160c97d9ce..e4591ab5e8 100644 --- a/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ SelfSubjectAccessReview checks whether or the current user can perform an action Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SelfSubjectAccessReviewSpec](#selfsubjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated. user and groups must be empty status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md index 134f24f9eb..b8d3b255ce 100644 --- a/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ SelfSubjectAccessReview checks whether or the current user can perform an action Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SelfSubjectAccessReviewSpec](#selfsubjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated. user and groups must be empty status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_service_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_service_v1_concept.md index 809920a3b3..66188c15c9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_service_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_service_v1_concept.md @@ -48,6 +48,8 @@ Appears In ServiceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ServiceSpec](#servicespec-v1)* | Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ServiceStatus](#servicestatus-v1)* | Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status @@ -86,7 +88,9 @@ loadBalancer
*[LoadBalancerStatus](#loadbalancerstatus-v1)* | LoadBalanc Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_service_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_service_v1_definition.md index 266f29b74d..bb318c6b6b 100644 --- a/docs/resources-reference/v1.5/documents/_generated_service_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_service_v1_definition.md @@ -13,6 +13,8 @@ Appears In ServiceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata spec
*[ServiceSpec](#servicespec-v1)* | Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status status
*[ServiceStatus](#servicestatus-v1)* | Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status diff --git a/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md index e475759701..66eb200f9d 100644 --- a/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md @@ -22,7 +22,9 @@ Appears In ServiceAccountList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources imagePullSecrets
*[LocalObjectReference](#localobjectreference-v1) array* | 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 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://kubernetes.io/docs/user-guide/secrets @@ -33,7 +35,9 @@ secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md index 89983a2ee4..9cc67f6509 100644 --- a/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md @@ -13,7 +13,9 @@ Appears In ServiceAccountList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources imagePullSecrets
*[LocalObjectReference](#localobjectreference-v1) array* | 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 +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata secrets
*[ObjectReference](#objectreference-v1) array* | Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://kubernetes.io/docs/user-guide/secrets diff --git a/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md index 7570b81ce2..dc37dd78bc 100644 --- a/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md @@ -21,7 +21,9 @@ ServiceAccountList is a list of ServiceAccount objects Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md index 96e992b440..2df64a5d74 100644 --- a/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md @@ -12,6 +12,8 @@ ServiceAccountList is a list of ServiceAccount objects Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ServiceAccount](#serviceaccount-v1) array* | List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_concept.md index 073232204f..38670c1064 100644 --- a/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_concept.md @@ -21,7 +21,9 @@ ServiceList holds a list of services. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_definition.md index 59f23c16cb..21b4736abb 100644 --- a/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_servicelist_v1_definition.md @@ -12,6 +12,8 @@ ServiceList holds a list of services. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[Service](#service-v1) array* | List of services +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds diff --git a/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md index 842363fccd..61c47f4f25 100644 --- a/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md @@ -25,6 +25,8 @@ Appears In StatefulSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[StatefulSetSpec](#statefulsetspec-v1beta1)* | Spec defines the desired identities of pods in this set. status
*[StatefulSetStatus](#statefulsetstatus-v1beta1)* | Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. @@ -59,7 +61,9 @@ replicas
*integer* | Replicas is the number of actual replicas. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md index 8211823b91..239e0a9c19 100644 --- a/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md @@ -16,6 +16,8 @@ Appears In StatefulSetList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[StatefulSetSpec](#statefulsetspec-v1beta1)* | Spec defines the desired identities of pods in this set. status
*[StatefulSetStatus](#statefulsetstatus-v1beta1)* | Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time. diff --git a/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md index 61d68b6d98..3a851e631a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md @@ -21,7 +21,9 @@ StatefulSetList is a collection of StatefulSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md index 4a3b94287f..bfc30a38d9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md @@ -12,6 +12,8 @@ StatefulSetList is a collection of StatefulSets. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StatefulSet](#statefulset-v1beta1) array* | +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | diff --git a/docs/resources-reference/v1.5/documents/_generated_status_unversioned_concept.md b/docs/resources-reference/v1.5/documents/_generated_status_unversioned_concept.md index 88358cedf0..28d7041a46 100644 --- a/docs/resources-reference/v1.5/documents/_generated_status_unversioned_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_status_unversioned_concept.md @@ -21,8 +21,10 @@ Status is a return value for calls that don't return other objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources code
*integer* | Suggested HTTP return code for this status, 0 if not set. details
*[StatusDetails](#statusdetails-unversioned)* | 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. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds message
*string* | A human-readable description of the status of this operation. metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds reason
*string* | A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. diff --git a/docs/resources-reference/v1.5/documents/_generated_status_unversioned_definition.md b/docs/resources-reference/v1.5/documents/_generated_status_unversioned_definition.md index 17666f9f39..552589564b 100644 --- a/docs/resources-reference/v1.5/documents/_generated_status_unversioned_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_status_unversioned_definition.md @@ -12,8 +12,10 @@ Status is a return value for calls that don't return other objects. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources code
*integer* | Suggested HTTP return code for this status, 0 if not set. details
*[StatusDetails](#statusdetails-unversioned)* | 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. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds message
*string* | A human-readable description of the status of this operation. metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds reason
*string* | A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. diff --git a/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md index c8da46b739..855e2ea3bc 100644 --- a/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md @@ -24,6 +24,8 @@ Appears In StorageClassList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata parameters
*object* | Parameters holds the parameters for the provisioner that should create volumes of this storage class. provisioner
*string* | Provisioner indicates the type of the provisioner. @@ -35,7 +37,9 @@ provisioner
*string* | Provisioner indicates the type of the provisioner Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md index 6813b5e0ea..453678e949 100644 --- a/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md @@ -15,6 +15,8 @@ Appears In StorageClassList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata parameters
*object* | Parameters holds the parameters for the provisioner that should create volumes of this storage class. provisioner
*string* | Provisioner indicates the type of the provisioner. diff --git a/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md index 9571c67b39..5e743ba1df 100644 --- a/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md @@ -21,7 +21,9 @@ StorageClassList is a collection of storage classes. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md index 3c759c12f6..afd973b97a 100644 --- a/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md @@ -12,6 +12,8 @@ StorageClassList is a collection of storage classes. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[StorageClass](#storageclass-v1beta1) array* | Items is the list of StorageClasses +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata diff --git a/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md index e6033a04b1..4fadfecfbd 100644 --- a/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md @@ -21,6 +21,8 @@ SubjectAccessReview checks whether or not a user or group can perform an action. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md index 2bc0a406a9..7f8e325449 100644 --- a/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md @@ -12,6 +12,8 @@ SubjectAccessReview checks whether or not a user or group can perform an action. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[SubjectAccessReviewSpec](#subjectaccessreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[SubjectAccessReviewStatus](#subjectaccessreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request is allowed or not diff --git a/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md index 5b3402d266..18a3576dd1 100644 --- a/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md @@ -18,7 +18,7 @@ Core | v1 | TCPSocketAction TCPSocketAction describes an action based on opening a socket +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md index 32c9c6c931..1761160b24 100644 --- a/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md @@ -9,7 +9,7 @@ Core | v1 | TCPSocketAction TCPSocketAction describes an action based on opening a socket +Appears In Handler Probe Field | Description ------------ | ----------- diff --git a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md index bb6f7039c4..d082bd7b53 100644 --- a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md @@ -22,7 +22,9 @@ Appears In ThirdPartyResourceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources description
*string* | Description is the description of this object. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versions for this third party object @@ -33,7 +35,9 @@ versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versio Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md index a2916ae154..3911bfadb0 100644 --- a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md @@ -13,7 +13,9 @@ Appears In ThirdPartyResourceList Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources description
*string* | Description is the description of this object. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | Standard object metadata versions
*[APIVersion](#apiversion-v1beta1) array* | Versions are versions for this third party object diff --git a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md index 019691b0bc..590f683163 100644 --- a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md @@ -21,7 +21,9 @@ ThirdPartyResourceList is a list of ThirdPartyResources. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md index 72822779cd..75705a3f02 100644 --- a/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md @@ -12,6 +12,8 @@ ThirdPartyResourceList is a list of ThirdPartyResources. Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources items
*[ThirdPartyResource](#thirdpartyresource-v1beta1) array* | Items is the list of ThirdPartyResources. +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ListMeta](#listmeta-unversioned)* | Standard list metadata. diff --git a/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md b/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md index 15b050db54..f4cfd60484 100644 --- a/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md @@ -21,6 +21,8 @@ TokenReview attempts to authenticate a token to a known user. Note: TokenReview Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[TokenReviewSpec](#tokenreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[TokenReviewStatus](#tokenreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request can be authenticated. diff --git a/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md b/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md index 5470a067d7..7bf48a05ab 100644 --- a/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md @@ -12,6 +12,8 @@ TokenReview attempts to authenticate a token to a known user. Note: TokenReview Field | Description ------------ | ----------- +apiVersion
*string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources +kind
*string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds metadata
*[ObjectMeta](#objectmeta-v1)* | spec
*[TokenReviewSpec](#tokenreviewspec-v1beta1)* | Spec holds information about the request being evaluated status
*[TokenReviewStatus](#tokenreviewstatus-v1beta1)* | Status is filled in by the server and indicates whether the request can be authenticated. diff --git a/docs/resources-reference/v1.5/documents/_generated_volume_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_volume_v1_concept.md index eea4705dd5..10dbbf60b9 100644 --- a/docs/resources-reference/v1.5/documents/_generated_volume_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_volume_v1_concept.md @@ -22,7 +22,30 @@ Appears In PodSpec Field | Description ------------ | ----------- +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +configMap
*[ConfigMapVolumeSource](#configmapvolumesource-v1)* | ConfigMap represents a configMap that should populate this volume +downwardAPI
*[DownwardAPIVolumeSource](#downwardapivolumesource-v1)* | DownwardAPI represents downward API about the pod that should populate this volume +emptyDir
*[EmptyDirVolumeSource](#emptydirvolumesource-v1)* | EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +gitRepo
*[GitRepoVolumeSource](#gitrepovolumesource-v1)* | GitRepo represents a git repository at a particular revision. +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md name
*string* | Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs +persistentVolumeClaim
*[PersistentVolumeClaimVolumeSource](#persistentvolumeclaimvolumesource-v1)* | PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +secret
*[SecretVolumeSource](#secretvolumesource-v1)* | Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/resources-reference/v1.5/documents/_generated_volume_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_volume_v1_definition.md index c6776e401f..e9e9dbf630 100644 --- a/docs/resources-reference/v1.5/documents/_generated_volume_v1_definition.md +++ b/docs/resources-reference/v1.5/documents/_generated_volume_v1_definition.md @@ -13,5 +13,28 @@ Appears In PodSpec Field | Description ------------ | ----------- +awsElasticBlockStore
*[AWSElasticBlockStoreVolumeSource](#awselasticblockstorevolumesource-v1)* | AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore +azureDisk
*[AzureDiskVolumeSource](#azurediskvolumesource-v1)* | AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +azureFile
*[AzureFileVolumeSource](#azurefilevolumesource-v1)* | AzureFile represents an Azure File Service mount on the host and bind mount to the pod. +cephfs
*[CephFSVolumeSource](#cephfsvolumesource-v1)* | CephFS represents a Ceph FS mount on the host that shares a pod's lifetime +cinder
*[CinderVolumeSource](#cindervolumesource-v1)* | Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md +configMap
*[ConfigMapVolumeSource](#configmapvolumesource-v1)* | ConfigMap represents a configMap that should populate this volume +downwardAPI
*[DownwardAPIVolumeSource](#downwardapivolumesource-v1)* | DownwardAPI represents downward API about the pod that should populate this volume +emptyDir
*[EmptyDirVolumeSource](#emptydirvolumesource-v1)* | EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir +fc
*[FCVolumeSource](#fcvolumesource-v1)* | FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +flexVolume
*[FlexVolumeSource](#flexvolumesource-v1)* | 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
*[FlockerVolumeSource](#flockervolumesource-v1)* | Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running +gcePersistentDisk
*[GCEPersistentDiskVolumeSource](#gcepersistentdiskvolumesource-v1)* | GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk +gitRepo
*[GitRepoVolumeSource](#gitrepovolumesource-v1)* | GitRepo represents a git repository at a particular revision. +glusterfs
*[GlusterfsVolumeSource](#glusterfsvolumesource-v1)* | Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md +hostPath
*[HostPathVolumeSource](#hostpathvolumesource-v1)* | 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 +iscsi
*[ISCSIVolumeSource](#iscsivolumesource-v1)* | ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md name
*string* | Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names +nfs
*[NFSVolumeSource](#nfsvolumesource-v1)* | NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs +persistentVolumeClaim
*[PersistentVolumeClaimVolumeSource](#persistentvolumeclaimvolumesource-v1)* | PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims +photonPersistentDisk
*[PhotonPersistentDiskVolumeSource](#photonpersistentdiskvolumesource-v1)* | PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine +quobyte
*[QuobyteVolumeSource](#quobytevolumesource-v1)* | Quobyte represents a Quobyte mount on the host that shares a pod's lifetime +rbd
*[RBDVolumeSource](#rbdvolumesource-v1)* | RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md +secret
*[SecretVolumeSource](#secretvolumesource-v1)* | Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets +vsphereVolume
*[VsphereVirtualDiskVolumeSource](#vspherevirtualdiskvolumesource-v1)* | VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine diff --git a/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md new file mode 100644 index 0000000000..7bebafb4f1 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md @@ -0,0 +1,32 @@ + + +----------- +# VsphereVirtualDiskVolumeSource v1 + + + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | VsphereVirtualDiskVolumeSource + + + + + + + +Represents a vSphere volume resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +volumePath
*string* | Path that identifies vSphere volume vmdk + + + + + + diff --git a/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md b/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md new file mode 100644 index 0000000000..5ddca32b21 --- /dev/null +++ b/docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md @@ -0,0 +1,18 @@ +## VsphereVirtualDiskVolumeSource v1 + +Group | Version | Kind +------------ | ---------- | ----------- +Core | v1 | VsphereVirtualDiskVolumeSource + + + +Represents a vSphere volume resource. + + + +Field | Description +------------ | ----------- +fsType
*string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. +volumePath
*string* | Path that identifies vSphere volume vmdk + diff --git a/docs/resources-reference/v1.5/index.html b/docs/resources-reference/v1.5/index.html index 9782a748bd..78713687ec 100644 --- a/docs/resources-reference/v1.5/index.html +++ b/docs/resources-reference/v1.5/index.html @@ -11,7 +11,7 @@ - +
  • example

WORKLOADS

@@ -227,6 +227,14 @@ Appears In CronJobList
+ + + + + + + + @@ -306,10 +314,18 @@ Appears In CronJob + + + + + + + + @@ -376,6 +392,14 @@ Appears In DaemonSetList + + + + + + + + @@ -451,10 +475,18 @@ Appears In DaemonSet + + + + + + + + @@ -474,8 +506,8 @@ Appears In DaemonSetspec:# 3 Pods should exist at all times. replicas:3 - # Keep record of 10 revisions for rollback - revisionHistoryLimit:10 + # Keep record of 2 revisions for rollback + revisionHistoryLimit:2 template: metadata: labels: @@ -517,6 +549,14 @@ Appears In DeploymentList + + + + + + + + @@ -628,10 +668,18 @@ Appears In Deployment + + + + + + + + @@ -669,6 +717,14 @@ Appears In DeploymentSpec + + + + + + + + @@ -760,6 +816,14 @@ Appears In JobList + + + + + + + + @@ -859,10 +923,18 @@ Appears In Job + + + + + + + + @@ -919,6 +991,14 @@ Appears In PodList + + + + + + + + @@ -1070,10 +1150,18 @@ Appears In Pod + + + + + + + + @@ -1138,6 +1226,14 @@ Appears In ReplicaSetList + + + + + + + + @@ -1229,10 +1325,18 @@ Appears In ReplicaSet + + + + + + + + @@ -1297,6 +1401,14 @@ Appears In ReplicationControllerList + + + + + + + + @@ -1388,10 +1500,18 @@ Appears In ReplicationController + + + + + + + + @@ -1433,6 +1553,14 @@ Appears In StatefulSetList + + + + + + + + @@ -1512,10 +1640,18 @@ Appears In StatefulSet + + + + + + + + @@ -1574,6 +1710,14 @@ Appears In EndpointsList + + + + + + + + @@ -1593,10 +1737,18 @@ Appears In EndpointsList + + + + + + + + @@ -1633,6 +1785,14 @@ Appears In IngressList + + + + + + + + @@ -1700,10 +1860,18 @@ Appears In Ingress + + + + + + + + @@ -1764,6 +1932,14 @@ Appears In ServiceList + + + + + + + + @@ -1859,10 +2035,18 @@ Appears In Service + + + + + + + + @@ -1908,10 +2092,18 @@ Appears In ConfigMapList + + + + + + + + @@ -1927,10 +2119,18 @@ Appears In ConfigMapList + + + + + + + + @@ -1967,10 +2167,18 @@ Appears In SecretList + + + + + + + + @@ -1994,10 +2202,18 @@ Appears In SecretList + + + + + + + + @@ -2039,6 +2255,14 @@ Appears In PersistentVolumeClaimList + + + + + + + + @@ -2118,10 +2342,18 @@ Appears In PersistentVolumeClaim + + + + + + + + @@ -2159,6 +2391,14 @@ Appears In StorageClassList + + + + + + + + @@ -2182,10 +2422,18 @@ Appears In StorageClassList + + + + + + + + @@ -2222,9 +2470,101 @@ Appears In PodSpec + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
CronJob array
Items is the list of CronJob.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
DaemonSet array
Items is a list of daemon sets.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Deployment array
Items is the list of Deployments.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
name
string
Required: This must match the Name of a deployment.
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Job array
Items is the list of Job.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Pod array
List of pods. More info: http://kubernetes.io/docs/user-guide/pods
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ReplicaSet array
List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ReplicationController array
List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
StatefulSet array
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Endpoints array
List of endpoints.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Ingress array
Items is the list of Ingress.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Service array
List of services
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
data
object
Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
ConfigMap array
Items is the list of ConfigMaps.
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
data
object
Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
Secret array
Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
PersistentVolumeClaim array
A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
items
StorageClass array
Items is the list of StorageClasses
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ListMeta
Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
awsElasticBlockStore
AWSElasticBlockStoreVolumeSource
AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
azureDisk
AzureDiskVolumeSource
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
azureFile
AzureFileVolumeSource
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
cephfs
CephFSVolumeSource
CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
cinder
CinderVolumeSource
Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
configMap
ConfigMapVolumeSource
ConfigMap represents a configMap that should populate this volume
downwardAPI
DownwardAPIVolumeSource
DownwardAPI represents downward API about the pod that should populate this volume
emptyDir
EmptyDirVolumeSource
EmptyDir represents a temporary directory that shares a pod's lifetime. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
fc
FCVolumeSource
FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
flexVolume
FlexVolumeSource
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
FlockerVolumeSource
Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
gcePersistentDisk
GCEPersistentDiskVolumeSource
GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
gitRepo
GitRepoVolumeSource
GitRepo represents a git repository at a particular revision.
glusterfs
GlusterfsVolumeSource
Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
hostPath
HostPathVolumeSource
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
iscsi
ISCSIVolumeSource
ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md
name
string
Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names
nfs
NFSVolumeSource
NFS represents an NFS mount on the host that shares a pod's lifetime More info: http://kubernetes.io/docs/user-guide/volumes#nfs
persistentVolumeClaim
PersistentVolumeClaimVolumeSource
PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
photonPersistentDisk
PhotonPersistentDiskVolumeSource
PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
quobyte
QuobyteVolumeSource
Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
rbd
RBDVolumeSource
RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
secret
SecretVolumeSource
Secret represents a secret that should populate this volume. More info: http://kubernetes.io/docs/user-guide/volumes#secrets
vsphereVolume
VsphereVirtualDiskVolumeSource
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

METADATA

@@ -2271,6 +2611,10 @@ Appears In EventList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + count
integer The number of times this event has occurred. @@ -2283,6 +2627,10 @@ Appears In EventList The object that this event is about. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + lastTimestamp
Time The time at which the most recent occurrence of this event was recorded. @@ -2318,10 +2666,18 @@ Appears In EventList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Event array List of events +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -2358,6 +2714,14 @@ Appears In LimitRangeList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -2395,10 +2759,18 @@ Appears In LimitRange +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
LimitRange array Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -2438,6 +2810,14 @@ Appears In HorizontalPodAutoscalerList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -2525,10 +2905,18 @@ Appears In HorizontalPodAutoscaler +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
HorizontalPodAutoscaler array list of horizontal pod autoscaler objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. @@ -2565,6 +2953,14 @@ Appears In PodTemplateList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -2606,10 +3002,18 @@ Appears In DaemonSetSpec http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
PodTemplate array List of pod templates +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -2646,6 +3050,14 @@ Appears In PodDisruptionBudgetList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -2729,10 +3141,18 @@ Appears In PodDisruptionBudget +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
PodDisruptionBudget array +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta @@ -2769,10 +3189,18 @@ Appears In ThirdPartyResourceList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + description
string Description is the description of this object. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object metadata @@ -2792,10 +3220,18 @@ Appears In ThirdPartyResourceList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ThirdPartyResource array Items is the list of ThirdPartyResources. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. @@ -2832,6 +3268,14 @@ Appears In ThirdPartyResourceList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -2872,6 +3316,14 @@ Appears In CertificateSigningR +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -2947,10 +3399,18 @@ Appears In CertificateSigningReque +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
CertificateSigningRequest array +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta @@ -2987,6 +3447,14 @@ Appears In ClusterRoleList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. @@ -3006,10 +3474,18 @@ Appears In ClusterRoleList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ClusterRole array Items is a list of ClusterRoles +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard object's metadata. @@ -3046,6 +3522,14 @@ Appears In ClusterRoleBindingList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. @@ -3069,10 +3553,18 @@ Appears In ClusterRoleBindingList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ClusterRoleBinding array Items is a list of ClusterRoleBindings +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard object's metadata. @@ -3109,10 +3601,18 @@ Appears In ComponentStatusList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + conditions
ComponentCondition array List of component conditions observed +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3128,10 +3628,18 @@ Appears In ComponentStatusList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ComponentStatus array List of ComponentStatus objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3165,6 +3673,14 @@ Appears In ComponentStatusList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -3209,6 +3725,14 @@ Appears In NamespaceList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3268,10 +3792,18 @@ Appears In Namespace +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Namespace array Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3308,6 +3840,14 @@ Appears In NodeList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3415,10 +3955,18 @@ Appears In Node +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Node array List of nodes +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3460,6 +4008,14 @@ Appears In PersistentVolumeList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3490,17 +4046,85 @@ Appears In PersistentVolume AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes +awsElasticBlockStore
AWSElasticBlockStoreVolumeSource +AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore + + +azureDisk
AzureDiskVolumeSource +AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + + +azureFile
AzureFileVolumeSource +AzureFile represents an Azure File Service mount on the host and bind mount to the pod. + + capacity
object A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity +cephfs
CephFSVolumeSource +CephFS represents a Ceph FS mount on the host that shares a pod's lifetime + + +cinder
CinderVolumeSource +Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md + + claimRef
ObjectReference 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 +fc
FCVolumeSource +FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. + + +flexVolume
FlexVolumeSource +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
FlockerVolumeSource +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 + + +gcePersistentDisk
GCEPersistentDiskVolumeSource +GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk + + +glusterfs
GlusterfsVolumeSource +Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md + + +hostPath
HostPathVolumeSource +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 + + +iscsi
ISCSIVolumeSource +ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. + + +nfs
NFSVolumeSource +NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs + + persistentVolumeReclaimPolicy
string What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy + +photonPersistentDisk
PhotonPersistentDiskVolumeSource +PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine + + +quobyte
QuobyteVolumeSource +Quobyte represents a Quobyte mount on the host that shares a pod's lifetime + + +rbd
RBDVolumeSource +RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md + + +vsphereVolume
VsphereVirtualDiskVolumeSource +VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine +

PersistentVolumeStatus v1

@@ -3539,10 +4163,18 @@ Appears In PersistentVolume +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
PersistentVolume array List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3579,6 +4211,14 @@ Appears In ResourceQuotaList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3646,10 +4286,18 @@ Appears In ResourceQuota +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ResourceQuota array Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3686,6 +4334,14 @@ Appears In RoleList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. @@ -3705,10 +4361,18 @@ Appears In RoleList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Role array Items is a list of Roles +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard object's metadata. @@ -3745,6 +4409,14 @@ Appears In RoleBindingList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. @@ -3768,10 +4440,18 @@ Appears In RoleBindingList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
RoleBinding array Items is a list of RoleBindings +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard object's metadata. @@ -3805,6 +4485,14 @@ Appears In RoleBindingList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -3871,10 +4559,18 @@ Appears In ServiceAccountList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + imagePullSecrets
LocalObjectReference array 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 +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -3894,10 +4590,18 @@ Appears In ServiceAccountList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
ServiceAccount array List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds @@ -3931,6 +4635,14 @@ Appears In ServiceAccountList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -4032,6 +4744,14 @@ Appears In LocalSubjectAccessReview< +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta @@ -4119,6 +4839,14 @@ Appears In NetworkPolicyList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -4160,10 +4888,18 @@ Appears In NetworkPolicy +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
NetworkPolicy array Items is a list of schema objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -4201,6 +4937,14 @@ Appears In APIGroupList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + name
string name is the name of the group. @@ -4323,6 +5067,14 @@ Appears In ThirdPartyResource +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + serverAddressByClientCIDRs
ServerAddressByClientCIDR array 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. @@ -4332,6 +5084,54 @@ Appears In ThirdPartyResource +

AWSElasticBlockStoreVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AWSElasticBlockStoreVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
partition
integer
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
readOnly
boolean
Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
volumeID
string
Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore

AttachedVolume v1

@@ -4371,6 +5171,100 @@ Appears In NodeStatus
+

AzureDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AzureDiskVolumeSource
+

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
cachingMode
string
Host Caching mode: None, Read Only, Read Write.
diskName
string
The Name of the data disk in the blob storage
diskURI
string
The URI the data disk in the blob storage
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
readOnly
boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
+

AzureFileVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1AzureFileVolumeSource
+

AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
readOnly
boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secretName
string
the name of secret that contains Azure Storage Account Name and Key
shareName
string
Share Name

CPUTargetUtilization v1beta1

@@ -4444,6 +5338,61 @@ Appears In SecurityContext
+

CephFSVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1CephFSVolumeSource
+

Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
monitors
string array
Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
path
string
Optional: Used as the mounted root, rather than the full Ceph tree, default is /
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
secretFile
string
Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
secretRef
LocalObjectReference
Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
user
string
Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

CertificateSigningRequestCondition v1alpha1

@@ -4490,6 +5439,49 @@ Appears In CertificateSigni
+

CinderVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1CinderVolumeSource
+

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.

+
+ + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
volumeID
string
volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

ComponentCondition v1

@@ -4570,6 +5562,54 @@ Appears In EnvVarSource + + + + + +
key
string
The key to select.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
+

ConfigMapVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1ConfigMapVolumeSource
+

Adapts a ConfigMap into a volume.

+

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.

+ + + + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
KeyToPath array
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. Paths must be relative and may not contain the '..' path or start with '..'.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

ContainerImage v1

@@ -4946,10 +5986,18 @@ Appears In Eviction +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + gracePeriodSeconds
integer The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + orphanDependents
boolean Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. @@ -5014,6 +6062,127 @@ Appears In DeploymentStatus +

DownwardAPIVolumeFile v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1DownwardAPIVolumeFile
+

DownwardAPIVolumeFile represents information to create the file containing the pod field

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fieldRef
ObjectFieldSelector
Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.
mode
integer
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
path
string
Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'
resourceFieldRef
ResourceFieldSelector
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
+

DownwardAPIVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1DownwardAPIVolumeSource
+

DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
DownwardAPIVolumeFile array
Items is a list of downward API volume file
+

EmptyDirVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1EmptyDirVolumeSource
+

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + +
FieldDescription
medium
string
What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

EndpointAddress v1

@@ -5310,10 +6479,18 @@ Appears In Event + + + + + + + + @@ -5338,7 +6515,7 @@ Appears In Event
apiVersion
string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
deleteOptions
DeleteOptions
DeleteOptions may be provided
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
ObjectMeta describes the pod that is being evicted.

ExecAction describes a "run in container" action.

+Appears In Handler Probe @@ -5355,6 +6532,277 @@ Appears In Handler
+

FCVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FCVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
lun
integer
Required: FC target lun number
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
targetWWNs
string array
Required: FC target worldwide names (WWNs)
+

FlexVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FlexVolumeSource
+

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.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
driver
string
Driver is the name of the driver to use for this volume.
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
options
object
Optional: Extra command options if any.
readOnly
boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secretRef
LocalObjectReference
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.
+

FlockerVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1FlockerVolumeSource
+

Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
datasetName
string
Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated
datasetUUID
string
UUID of the dataset. This is unique identifier of a Flocker dataset
+

GCEPersistentDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GCEPersistentDiskVolumeSource
+

Represents a Persistent Disk resource in Google Compute Engine.

+

A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
partition
integer
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
pdName
string
Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
+

GitRepoVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GitRepoVolumeSource
+

Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
directory
string
Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
repository
string
Repository URL
revision
string
Commit hash for the specified revision.
+

GlusterfsVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1GlusterfsVolumeSource
+

Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
endpoints
string
EndpointsName is the endpoint name that details Glusterfs topology. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
path
string
Path is the Glusterfs volume path. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
readOnly
boolean
ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

GroupVersionForDiscovery unversioned

@@ -5413,7 +6861,7 @@ Appears In APIGroup

HTTPGetAction describes an action based on HTTP Get requests.

+Appears In Handler Probe @@ -5484,6 +6932,80 @@ Appears In HTTPGetAction
+

HTTPIngressPath v1beta1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1beta1HTTPIngressPath
+

HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
backend
IngressBackend
Backend defines the referenced service endpoint to which the traffic will be forwarded to.
path
string
Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.
+

HTTPIngressRuleValue v1beta1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1beta1HTTPIngressRuleValue
+

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 '#'.

+ + + + + + + + + + + + + + + +
FieldDescription
paths
HTTPIngressPath array
A collection of paths that map requests to backends.

Handler v1

@@ -5527,6 +7049,96 @@ Appears In Lifecycle
+

HostPathVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1HostPathVolumeSource
+

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + +
FieldDescription
path
string
Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
+

ISCSIVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1ISCSIVolumeSource
+

Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi
iqn
string
Target iSCSI Qualified Name.
iscsiInterface
string
Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
lun
integer
iSCSI target lun number.
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
targetPortal
string
iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

Info version

@@ -5610,7 +7222,7 @@ Appears In Lifecycle

IngressBackend describes all endpoints for a given service and port.

+Appears In HTTPIngressPath IngressSpec @@ -5663,6 +7275,10 @@ Appears In IngressSpec + + + +
host
string
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.
http
HTTPIngressRuleValue

IngressTLS v1beta1

@@ -5833,6 +7449,49 @@ Appears In CronJobSpec +

KeyToPath v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1KeyToPath
+

Maps a string key to a path within a volume.

+ + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
key
string
The key to project.
mode
integer
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
path
string
The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

LabelSelector unversioned

@@ -6141,7 +7800,7 @@ Appears In IngressStatus -Appears In PodSpecServiceAccount +Appears In CephFSVolumeSourceFlexVolumeSourcePodSpecRBDVolumeSourceServiceAccount
@@ -6157,6 +7816,49 @@ Appears In PodSpecServ
+

NFSVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1NFSVolumeSource
+

Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

+
+ + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
path
string
Path that is exported by the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs
readOnly
boolean
ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: http://kubernetes.io/docs/user-guide/volumes#nfs
server
string
Server is the hostname or IP address of the NFS server. More info: http://kubernetes.io/docs/user-guide/volumes#nfs

NetworkPolicyIngressRule v1beta1

@@ -6530,7 +8232,7 @@ Appears In SelfSubjectAccessRevi

ObjectFieldSelector selects an APIVersioned field of an object.

+Appears In DownwardAPIVolumeFile EnvVarSource @@ -6782,6 +8484,84 @@ Appears In ObjectMeta
+

PersistentVolumeClaimVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1PersistentVolumeClaimVolumeSource
+

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).

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
claimName
string
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
readOnly
boolean
Will force the ReadOnly setting in VolumeMounts. Default false.
+

PhotonPersistentDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1PhotonPersistentDiskVolumeSource
+

Represents a Photon Controller persistent disk resource.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
pdID
string
ID that identifies Photon Controller persistent disk

PodCondition v1

@@ -7008,10 +8788,18 @@ Appears In Container + + + + + + + + @@ -7024,6 +8812,10 @@ Appears In Container + + + + @@ -7062,6 +8854,120 @@ Appears In ResourceFieldSelector
exec
ExecAction
One and only one of the following should be specified. Exec specifies the action to take.
failureThreshold
integer
Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
httpGet
HTTPGetAction
HTTPGet specifies the http request to perform.
initialDelaySeconds
integer
Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
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.
tcpSocket
TCPSocketAction
TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
timeoutSeconds
integer
Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
+

QuobyteVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1QuobyteVolumeSource
+

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
group
string
Group to map volume access to Default is no group
readOnly
boolean
ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.
registry
string
Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes
user
string
User to map volume access to Defaults to serivceaccount user
volume
string
Volume is a string that references an already created Quobyte volume by name.
+

RBDVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1RBDVolumeSource
+

Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#rbd
image
string
The rados image name. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
keyring
string
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
monitors
string array
A collection of Ceph monitors. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
pool
string
The rados pool name. Default is rbd. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.
readOnly
boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
secretRef
LocalObjectReference
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
user
string
The rados user name. Default is admin. More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

RawExtension runtime

@@ -7299,7 +9205,7 @@ Appears In SelfSubjectAccessRevi

ResourceFieldSelector represents container resources (cpu, memory) and their output format

+Appears In DownwardAPIVolumeFile EnvVarSource @@ -7515,6 +9421,14 @@ Appears In PodSecurityContexthttp://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + + + + + @@ -7561,6 +9475,54 @@ Appears In EnvVarSource + + + + + +
kind
string
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
metadata
ObjectMeta
Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.
key
string
The key of the secret to select from. Must be a valid secret key.
name
string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
+

SecretVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1SecretVolumeSource
+

Adapts a Secret into a volume.

+

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.

+ + + + + + + + + + + + + + + + + + + + + +
FieldDescription
defaultMode
integer
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.
items
KeyToPath array
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. Paths must be relative and may not contain the '..' path or start with '..'.
secretName
string
Name of the secret in the pod's namespace to use. More info: http://kubernetes.io/docs/user-guide/volumes#secrets

SecurityContext v1

@@ -7735,6 +9697,10 @@ Appears In ServiceSpec +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + code
integer Suggested HTTP return code for this status, 0 if not set. @@ -7743,6 +9709,10 @@ Appears In ServiceSpec 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. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + message
string A human-readable description of the status of this operation. @@ -7967,7 +9937,7 @@ Appears In HorizontalPodAutoscal

TCPSocketAction describes an action based on opening a socket

+Appears In Handler Probe @@ -8110,6 +10080,45 @@ Appears In Container
+

VsphereVirtualDiskVolumeSource v1

+ + + + + + + + + + + + + + + +
GroupVersionKind
Corev1VsphereVirtualDiskVolumeSource
+

Represents a vSphere volume resource.

+ + + + + + + + + + + + + + + + + + + +
FieldDescription
fsType
string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
volumePath
string
Path that identifies vSphere volume vmdk

OLD API VERSIONS

This section contains older versions of resources shown above.


@@ -8186,6 +10195,14 @@ Appears In HorizontalPodAutoscale +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info:
http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -8273,10 +10290,18 @@ Appears In HorizontalPodAutoscaler +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
HorizontalPodAutoscaler array list of horizontal pod autoscaler objects. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata. @@ -8316,6 +10341,14 @@ Appears In JobList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -8415,10 +10448,18 @@ Appears In Job +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Job array Items is the list of Job. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -8458,6 +10499,14 @@ Appears In JobList +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -8557,10 +10606,18 @@ Appears In Job +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + items
Job array Items is the list of Job. +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ListMeta Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata @@ -8715,6 +10772,14 @@ Appears In JobStatus +apiVersion
string +APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources + + +kind
string +Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds + + metadata
ObjectMeta Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata. diff --git a/docs/resources-reference/v1.5/manifest.json b/docs/resources-reference/v1.5/manifest.json index 5a02c6fca4..e87a3fde36 100644 --- a/docs/resources-reference/v1.5/manifest.json +++ b/docs/resources-reference/v1.5/manifest.json @@ -151,24 +151,42 @@ { "filename": "_generated_apiversions_unversioned_definition.md" }, + { + "filename": "_generated_awselasticblockstorevolumesource_v1_definition.md" + }, { "filename": "_generated_attachedvolume_v1_definition.md" }, + { + "filename": "_generated_azurediskvolumesource_v1_definition.md" + }, + { + "filename": "_generated_azurefilevolumesource_v1_definition.md" + }, { "filename": "_generated_cputargetutilization_v1beta1_definition.md" }, { "filename": "_generated_capabilities_v1_definition.md" }, + { + "filename": "_generated_cephfsvolumesource_v1_definition.md" + }, { "filename": "_generated_certificatesigningrequestcondition_v1alpha1_definition.md" }, + { + "filename": "_generated_cindervolumesource_v1_definition.md" + }, { "filename": "_generated_componentcondition_v1_definition.md" }, { "filename": "_generated_configmapkeyselector_v1_definition.md" }, + { + "filename": "_generated_configmapvolumesource_v1_definition.md" + }, { "filename": "_generated_containerimage_v1_definition.md" }, @@ -199,6 +217,15 @@ { "filename": "_generated_deploymentcondition_v1beta1_definition.md" }, + { + "filename": "_generated_downwardapivolumefile_v1_definition.md" + }, + { + "filename": "_generated_downwardapivolumesource_v1_definition.md" + }, + { + "filename": "_generated_emptydirvolumesource_v1_definition.md" + }, { "filename": "_generated_endpointaddress_v1_definition.md" }, @@ -223,6 +250,24 @@ { "filename": "_generated_execaction_v1_definition.md" }, + { + "filename": "_generated_fcvolumesource_v1_definition.md" + }, + { + "filename": "_generated_flexvolumesource_v1_definition.md" + }, + { + "filename": "_generated_flockervolumesource_v1_definition.md" + }, + { + "filename": "_generated_gcepersistentdiskvolumesource_v1_definition.md" + }, + { + "filename": "_generated_gitrepovolumesource_v1_definition.md" + }, + { + "filename": "_generated_glusterfsvolumesource_v1_definition.md" + }, { "filename": "_generated_groupversionfordiscovery_unversioned_definition.md" }, @@ -232,9 +277,21 @@ { "filename": "_generated_httpheader_v1_definition.md" }, + { + "filename": "_generated_httpingresspath_v1beta1_definition.md" + }, + { + "filename": "_generated_httpingressrulevalue_v1beta1_definition.md" + }, { "filename": "_generated_handler_v1_definition.md" }, + { + "filename": "_generated_hostpathvolumesource_v1_definition.md" + }, + { + "filename": "_generated_iscsivolumesource_v1_definition.md" + }, { "filename": "_generated_info_version_definition.md" }, @@ -256,6 +313,9 @@ { "filename": "_generated_jobtemplatespec_v2alpha1_definition.md" }, + { + "filename": "_generated_keytopath_v1_definition.md" + }, { "filename": "_generated_labelselector_unversioned_definition.md" }, @@ -280,6 +340,9 @@ { "filename": "_generated_localobjectreference_v1_definition.md" }, + { + "filename": "_generated_nfsvolumesource_v1_definition.md" + }, { "filename": "_generated_networkpolicyingressrule_v1beta1_definition.md" }, @@ -319,6 +382,12 @@ { "filename": "_generated_patch_unversioned_definition.md" }, + { + "filename": "_generated_persistentvolumeclaimvolumesource_v1_definition.md" + }, + { + "filename": "_generated_photonpersistentdiskvolumesource_v1_definition.md" + }, { "filename": "_generated_podcondition_v1_definition.md" }, @@ -337,6 +406,12 @@ { "filename": "_generated_quantity_resource_definition.md" }, + { + "filename": "_generated_quobytevolumesource_v1_definition.md" + }, + { + "filename": "_generated_rbdvolumesource_v1_definition.md" + }, { "filename": "_generated_rawextension_runtime_definition.md" }, @@ -370,6 +445,9 @@ { "filename": "_generated_secretkeyselector_v1_definition.md" }, + { + "filename": "_generated_secretvolumesource_v1_definition.md" + }, { "filename": "_generated_securitycontext_v1_definition.md" }, @@ -406,6 +484,9 @@ { "filename": "_generated_volumemount_v1_definition.md" }, + { + "filename": "_generated_vspherevirtualdiskvolumesource_v1_definition.md" + }, { "filename": "_oldversions.md" }, diff --git a/docs/resources-reference/v1.5/navData.js b/docs/resources-reference/v1.5/navData.js index 89866ef28a..69c48c88e9 100644 --- a/docs/resources-reference/v1.5/navData.js +++ b/docs/resources-reference/v1.5/navData.js @@ -1 +1 @@ -(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[]},{"section":"job-v1beta1","subsections":[]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"handler-v1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"attachedvolume-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[]},{"section":"tokenreview-v1beta1","subsections":[]},{"section":"subjectaccessreview-v1beta1","subsections":[]},{"section":"serviceaccount-v1","subsections":[]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[]},{"section":"rolebinding-v1alpha1","subsections":[]},{"section":"role-v1alpha1","subsections":[]},{"section":"resourcequota-v1","subsections":[]},{"section":"persistentvolume-v1","subsections":[]},{"section":"node-v1","subsections":[]},{"section":"namespace-v1","subsections":[]},{"section":"localsubjectaccessreview-v1beta1","subsections":[]},{"section":"componentstatus-v1","subsections":[]},{"section":"clusterrolebinding-v1alpha1","subsections":[]},{"section":"clusterrole-v1alpha1","subsections":[]},{"section":"certificatesigningrequest-v1alpha1","subsections":[]},{"section":"binding-v1","subsections":[]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[]},{"section":"poddisruptionbudget-v1beta1","subsections":[]},{"section":"podtemplate-v1","subsections":[]},{"section":"horizontalpodautoscaler-v1","subsections":[]},{"section":"limitrange-v1","subsections":[]},{"section":"event-v1","subsections":[]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[]},{"section":"persistentvolumeclaim-v1","subsections":[]},{"section":"secret-v1","subsections":[]},{"section":"configmap-v1","subsections":[]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[]},{"section":"ingress-v1beta1","subsections":[]},{"section":"endpoints-v1","subsections":[]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[]},{"section":"replicationcontroller-v1","subsections":[]},{"section":"replicaset-v1beta1","subsections":[]},{"section":"pod-v1","subsections":[]},{"section":"job-v1","subsections":[]},{"section":"deployment-v1beta1","subsections":[]},{"section":"daemonset-v1beta1","subsections":[]},{"section":"cronjob-v2alpha1","subsections":[]},{"section":"container-v1","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","job-v2alpha1","job-v1beta1","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","handler-v1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapkeyselector-v1","componentcondition-v1","certificatesigningrequestcondition-v1alpha1","capabilities-v1","cputargetutilization-v1beta1","attachedvolume-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","networkpolicy-v1beta1","tokenreview-v1beta1","subjectaccessreview-v1beta1","serviceaccount-v1","selfsubjectaccessreview-v1beta1","rolebinding-v1alpha1","role-v1alpha1","resourcequota-v1","persistentvolume-v1","node-v1","namespace-v1","localsubjectaccessreview-v1beta1","componentstatus-v1","clusterrolebinding-v1alpha1","clusterrole-v1alpha1","certificatesigningrequest-v1alpha1","binding-v1","-strong-cluster-strong-","thirdpartyresource-v1beta1","poddisruptionbudget-v1beta1","podtemplate-v1","horizontalpodautoscaler-v1","limitrange-v1","event-v1","-strong-metadata-strong-","volume-v1","storageclass-v1beta1","persistentvolumeclaim-v1","secret-v1","configmap-v1","-strong-config-storage-strong-","service-v1","ingress-v1beta1","endpoints-v1","-strong-discovery-load-balancing-strong-","statefulset-v1beta1","replicationcontroller-v1","replicaset-v1beta1","pod-v1","job-v1","deployment-v1beta1","daemonset-v1beta1","cronjob-v2alpha1","container-v1","-strong-workloads-strong-"]}})(); \ No newline at end of file +(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[]},{"section":"job-v1beta1","subsections":[]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"vspherevirtualdiskvolumesource-v1"},{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretvolumesource-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"rbdvolumesource-v1"},{"section":"quobytevolumesource-v1"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"photonpersistentdiskvolumesource-v1"},{"section":"persistentvolumeclaimvolumesource-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"nfsvolumesource-v1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"keytopath-v1"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"iscsivolumesource-v1"},{"section":"hostpathvolumesource-v1"},{"section":"handler-v1"},{"section":"httpingressrulevalue-v1beta1"},{"section":"httpingresspath-v1beta1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"glusterfsvolumesource-v1"},{"section":"gitrepovolumesource-v1"},{"section":"gcepersistentdiskvolumesource-v1"},{"section":"flockervolumesource-v1"},{"section":"flexvolumesource-v1"},{"section":"fcvolumesource-v1"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"emptydirvolumesource-v1"},{"section":"downwardapivolumesource-v1"},{"section":"downwardapivolumefile-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapvolumesource-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"cindervolumesource-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"cephfsvolumesource-v1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"azurefilevolumesource-v1"},{"section":"azurediskvolumesource-v1"},{"section":"attachedvolume-v1"},{"section":"awselasticblockstorevolumesource-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[]},{"section":"tokenreview-v1beta1","subsections":[]},{"section":"subjectaccessreview-v1beta1","subsections":[]},{"section":"serviceaccount-v1","subsections":[]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[]},{"section":"rolebinding-v1alpha1","subsections":[]},{"section":"role-v1alpha1","subsections":[]},{"section":"resourcequota-v1","subsections":[]},{"section":"persistentvolume-v1","subsections":[]},{"section":"node-v1","subsections":[]},{"section":"namespace-v1","subsections":[]},{"section":"localsubjectaccessreview-v1beta1","subsections":[]},{"section":"componentstatus-v1","subsections":[]},{"section":"clusterrolebinding-v1alpha1","subsections":[]},{"section":"clusterrole-v1alpha1","subsections":[]},{"section":"certificatesigningrequest-v1alpha1","subsections":[]},{"section":"binding-v1","subsections":[]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[]},{"section":"poddisruptionbudget-v1beta1","subsections":[]},{"section":"podtemplate-v1","subsections":[]},{"section":"horizontalpodautoscaler-v1","subsections":[]},{"section":"limitrange-v1","subsections":[]},{"section":"event-v1","subsections":[]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[]},{"section":"persistentvolumeclaim-v1","subsections":[]},{"section":"secret-v1","subsections":[]},{"section":"configmap-v1","subsections":[]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[]},{"section":"ingress-v1beta1","subsections":[]},{"section":"endpoints-v1","subsections":[]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[]},{"section":"replicationcontroller-v1","subsections":[]},{"section":"replicaset-v1beta1","subsections":[]},{"section":"pod-v1","subsections":[]},{"section":"job-v1","subsections":[]},{"section":"deployment-v1beta1","subsections":[]},{"section":"daemonset-v1beta1","subsections":[]},{"section":"cronjob-v2alpha1","subsections":[]},{"section":"container-v1","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","job-v2alpha1","job-v1beta1","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","vspherevirtualdiskvolumesource-v1","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretvolumesource-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","rbdvolumesource-v1","quobytevolumesource-v1","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","photonpersistentdiskvolumesource-v1","persistentvolumeclaimvolumesource-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","nfsvolumesource-v1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","keytopath-v1","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","iscsivolumesource-v1","hostpathvolumesource-v1","handler-v1","httpingressrulevalue-v1beta1","httpingresspath-v1beta1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","glusterfsvolumesource-v1","gitrepovolumesource-v1","gcepersistentdiskvolumesource-v1","flockervolumesource-v1","flexvolumesource-v1","fcvolumesource-v1","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","emptydirvolumesource-v1","downwardapivolumesource-v1","downwardapivolumefile-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapvolumesource-v1","configmapkeyselector-v1","componentcondition-v1","cindervolumesource-v1","certificatesigningrequestcondition-v1alpha1","cephfsvolumesource-v1","capabilities-v1","cputargetutilization-v1beta1","azurefilevolumesource-v1","azurediskvolumesource-v1","attachedvolume-v1","awselasticblockstorevolumesource-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","networkpolicy-v1beta1","tokenreview-v1beta1","subjectaccessreview-v1beta1","serviceaccount-v1","selfsubjectaccessreview-v1beta1","rolebinding-v1alpha1","role-v1alpha1","resourcequota-v1","persistentvolume-v1","node-v1","namespace-v1","localsubjectaccessreview-v1beta1","componentstatus-v1","clusterrolebinding-v1alpha1","clusterrole-v1alpha1","certificatesigningrequest-v1alpha1","binding-v1","-strong-cluster-strong-","thirdpartyresource-v1beta1","poddisruptionbudget-v1beta1","podtemplate-v1","horizontalpodautoscaler-v1","limitrange-v1","event-v1","-strong-metadata-strong-","volume-v1","storageclass-v1beta1","persistentvolumeclaim-v1","secret-v1","configmap-v1","-strong-config-storage-strong-","service-v1","ingress-v1beta1","endpoints-v1","-strong-discovery-load-balancing-strong-","statefulset-v1beta1","replicationcontroller-v1","replicaset-v1beta1","pod-v1","job-v1","deployment-v1beta1","daemonset-v1beta1","cronjob-v2alpha1","container-v1","-strong-workloads-strong-"]}})(); \ No newline at end of file From b9c0d80bbc94edf08dce29929b958c58243a3aa2 Mon Sep 17 00:00:00 2001 From: caiyixiang Date: Sat, 14 Jan 2017 15:07:09 +0800 Subject: [PATCH 029/132] Update ingress.md --- docs/user-guide/ingress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/ingress.md b/docs/user-guide/ingress.md index 788cabaa4b..f27788ccf9 100644 --- a/docs/user-guide/ingress.md +++ b/docs/user-guide/ingress.md @@ -107,7 +107,7 @@ Where `107.178.254.228` is the IP allocated by the Ingress controller to satisfy ### Simple fanout -As described previously, pods within kubernetes have IPs only visible on the cluster network, so we need something at the edge accepting ingress traffic and proxying it to the right endpoints. This component is usually a highly available loadbalancers. An Ingress allows you to keep the number of loadbalancers down to a minimum, for example, a setup like: +As described previously, pods within kubernetes have IPs only visible on the cluster network, so we need something at the edge accepting ingress traffic and proxying it to the right endpoints. This component is usually a highly available loadbalancer. An Ingress allows you to keep the number of loadbalancers down to a minimum, for example, a setup like: ```shell foo.bar.com -> 178.91.123.132 -> / foo s1:80 From 4f3c2951822af0cd2365d47ff19f27015755fa97 Mon Sep 17 00:00:00 2001 From: Peter Lee Date: Sun, 15 Jan 2017 23:09:45 +0800 Subject: [PATCH 030/132] fix the named anchor name anchor `loading-and-merging` should be `loading-and-merging-rules` --- docs/user-guide/kubeconfig-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/kubeconfig-file.md b/docs/user-guide/kubeconfig-file.md index fd44eaf999..b4d7425127 100644 --- a/docs/user-guide/kubeconfig-file.md +++ b/docs/user-guide/kubeconfig-file.md @@ -16,7 +16,7 @@ So in order to easily switch between multiple clusters, for multiple users, a ku This file contains a series of authentication mechanisms and cluster connection information associated with nicknames. It also introduces the concept of a tuple of authentication information (user) and cluster connection information called a context that is also associated with a nickname. -Multiple kubeconfig files are allowed, if specified explicitly. At runtime they are loaded and merged along with override options specified from the command line (see [rules](#loading-and-merging) below). +Multiple kubeconfig files are allowed, if specified explicitly. At runtime they are loaded and merged along with override options specified from the command line (see [rules](#loading-and-merging-rules) below). ## Related discussion From ab7cbe3a49386987ed2ff56ffc1506bc909dfe9d Mon Sep 17 00:00:00 2001 From: Xing Zhou Date: Mon, 16 Jan 2017 11:03:01 +0800 Subject: [PATCH 031/132] Fixed Typo --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index cfc3c32125..7c6ae95e73 100644 --- a/docs/api.md +++ b/docs/api.md @@ -77,7 +77,7 @@ groups*](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/doc same underlying resources. The API group is specified in a REST path and in the `apiVersion` field of a serialized object. -Currently there are two API groups in use: +Currently there are several API groups in use: 1. the "core" group, which is at REST path `/api/v1` and is not specified as part of the `apiVersion` field, e.g. `apiVersion: v1`. From 5244bb8b6eac6faf9bb610139788d49dc57447f4 Mon Sep 17 00:00:00 2001 From: Marc Boorshtein Date: Mon, 16 Jan 2017 08:12:43 -0500 Subject: [PATCH 032/132] integrated docs from ts.com wiki w/o product info --- docs/admin/authentication.md | 145 ++++++++++++++++++++------- images/docs/admin/k8s_oidc_login.svg | 1 + 2 files changed, 112 insertions(+), 34 deletions(-) create mode 100644 images/docs/admin/k8s_oidc_login.svg diff --git a/docs/admin/authentication.md b/docs/admin/authentication.md index 4bbd0a4fee..1cfa8c5f13 100644 --- a/docs/admin/authentication.md +++ b/docs/admin/authentication.md @@ -29,9 +29,9 @@ stored as `Secrets`, which are mounted into pods allowing in cluster processes to talk to the Kubernetes API. API requests are tied to either a normal user or a service account, or are treated -as anonymous requests. This means every process inside or outside the cluster, from -a human user typing `kubectl` on a workstation, to `kubelets` on nodes, to members -of the control plane, must authenticate when making requests to the API server, +as anonymous requests. This means every process inside or outside the cluster, from +a human user typing `kubectl` on a workstation, to `kubelets` on nodes, to members +of the control plane, must authenticate when making requests to the API server, or be treated as an anonymous user. ## Authentication strategies @@ -58,7 +58,7 @@ When multiple are enabled, the first authenticator module to successfully authenticate the request short-circuits evaluation. The API server does not guarantee the order authenticators run in. -The `system:authenticated` group is included in the list of groups for all authenticated users. +The `system:authenticated` group is included in the list of groups for all authenticated users. ### X509 Client Certs @@ -222,44 +222,121 @@ from the OAuth2 [token response](https://openid.net/specs/openid-connect-core-1_ as a bearer token. See [above](#putting-a-bearer-token-in-a-request) for how the token is included in a request. -To enable the plugin, pass the following required flags: +![Kubernetes OpenID Connect Flow](/images/docs/admin/k8s_oidc_login.svg) -* `--oidc-issuer-url` URL of the provider which allows the API server to discover -public signing keys. Only URLs which use the `https://` scheme are accepted. This is typically -the provider's URL without a path, for example "https://accounts.google.com" or "https://login.salesforce.com". +1. Login to your identity provider +2. Your identity provider will provide you with an `access_token`, `id_token` and a `refresh_token` +3. When using `kubectl`, use your `id_token` with the `--token` flag or add it directly to your `kubeconfig` +4. `kubectl` sends your `id_token` in a header called Authorization to the API server +5. The API server will make sure the JWT signature is valid by checking against the certificate named in the configuration +6. Check to make sure the `id_token` hasn't expired +7. Make sure the user is authorized +8. Once authorized the API server returns a response to `kubectl` +9. `kubectl` provides feedback to the user -* `--oidc-client-id` A client id that all tokens must be issued for. +Since all of the data needed to validate who you are is in the `id_token`, Kubernetes doesn't need to +"phone home" to the identity provider. In a model where every request is stateless this provides a very scalable +solution for authentication. It does offer a few challenges: + +1. Kubernetes has no "web interface" to trigger the authentication process. There is no browser or interface to collect credentials which is why you need to authenticate to your identity provider first. +2. The `id_token` can't be revoked, its like a certificate so it should be short-lived (only a few minutes) so it can be very annoying to have to get a new token every few minutes +3. There's no easy way to authenticate to the Kubernetes dashboard without using the `kubectl -proxy` command or a reverse proxy that injects the `id_token` + + +#### Configuring the API Server + +To enable the plugin, configure the following flags on the API server: + +| Parameter | Description | Example | Required | +| --------- | ----------- | ------- | ------- | +| --oidc-issuer-url | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the `https://` scheme are accepted. This is typically the provider's discovery URL without a path, for example "https://accounts.google.com" or "https://login.salesforce.com". This URL should point to the level below .well-known/openid-configuration | If the discovery URL is https://accounts.google.com/.well-known/openid-configuration the value should be https://accounts.google.com | Yes | +| --oidc-client-id | A client id that all tokens must be issued for. | kubernetes | Yes | +| --oidc-username-claim | JWT claim to use as the user name. By default `sub`, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as `email`, depending on their provider. | sub | No | +| --oidc-groups-claim | JWT claim to use as the user's group. If the claim is present it must be an array of strings. | groups | No | +| --oidc-ca-file | The path to the certificate for the CA that signed your identity provider's web certificate. Defaults to the host's root CAs. | `/etc/kubernetes/ssl/kc-ca.pem` | No | Importantly, the API server is not an OAuth2 client, rather it can only be -configured to trust a single client. This allows the use of public providers, +configured to trust a single issuer. This allows the use of public providers, such as Google, without trusting credentials issued to third parties. Admins who -wish utilize multiple OAuth clients should explore providers which support the +wish to utilize multiple OAuth clients should explore providers which support the `azp` (authorized party) claim, a mechanism for allowing one client to issue tokens on behalf of another. -The plugin also accepts the following optional flags: - -* `--oidc-ca-file` Used by the API server to establish and verify the secure -connection to the issuer. Defaults to the host's root CAs. - -And experimental flags: - -* `--oidc-username-claim` JWT claim to use as the user name. By default `sub`, -which is expected to be a unique identifier of the end user. Admins can choose -other claims, such as `email`, depending on their provider. -* `--oidc-groups-claim` JWT claim to use as the user's group. If the claim is present -it must be an array of strings. - Kubernetes does not provide an OpenID Connect Identity Provider. You can use an existing public OpenID Connect Identity Provider (such as Google, or [others](http://connect2id.com/products/nimbus-oauth-openid-connect-sdk/openid-connect-providers)). -Or, you can run your own Identity Provider, such as CoreOS [dex](https://github.com/coreos/dex), [Keycloak](https://github.com/keycloak/keycloak) or CloudFoundry [UAA](https://github.com/cloudfoundry/uaa). +Or, you can run your own Identity Provider, such as CoreOS [dex](https://github.com/coreos/dex), [Keycloak](https://github.com/keycloak/keycloak), CloudFoundry [UAA](https://github.com/cloudfoundry/uaa), or Tremolo Security's [OpenUnison](https://github.com/tremolosecurity/openunison). -The provider needs to support [OpenID connect discovery](https://openid.net/specs/openid-connect-discovery-1_0.html); not all do. +For an identity provider to work with Kubernetes it must: + +1. Support [OpenID connect discovery](https://openid.net/specs/openid-connect-discovery-1_0.html); not all do. +2. Run in TLS with non-obsolete ciphers +3. Have a CA signed certificate (even if the CA is not a commercial CA or is self signed) + +A note about requirement #3 above, requiring a CA signed certificate. If you deploy your own identity provider (as opposed to one of the cloud providers like Google or Microsoft) you MUST have your identity provider's web server certificate signed by a certificate with the `CA` flag set to `TRUE`, even if it is self signed. This is due to GoLang's TLS client implementation being very strict to the standards around certificate validation. If you don't have a CA handy, you can use this script from the CoreOS team to create a simple CA and a signed certificate and key pair - https://github.com/coreos/dex/blob/1ee5920c54f5926d6468d2607c728b71cfe98092/examples/k8s/gencert.sh or this script based on it that will generate SHA256 certs with a longer life and larger key size https://raw.githubusercontent.com/TremoloSecurity/openunison-qs-kubernetes/master/makecerts.sh. Setup instructions for specific systems: - [UAA](http://apigee.com/about/blog/engineering/kubernetes-authentication-enterprise) - [Dex](https://speakerdeck.com/ericchiang/kubernetes-access-control-with-dex) +- [OpenUnison](https://github.com/TremoloSecurity/openunison-qs-kubernetes) + +#### Using kubectl + +##### Option 1 - OIDC Authenticator + +The first option is to use the `oidc` authenticator. This authenticator takes your `id_token`, `refresh_token` and your OIDC `client_secret` and will refresh your token automatically. Once you have authenticated to your identity provider: + +```bash +kubectl config set-credentials USER_NAME \ + --auth-provider=oidc + --auth-provider-arg=idp-issuer-url=( issuer url ) \ + --auth-provider-arg=client-id=( your client id ) \ + --auth-provider-arg=client-secret=( your client secret ) \ + --auth-provider-arg=refresh-token=( your refresh token ) \ + --auth-provider-arg=idp-certificate-authority=( path to your ca certificate ) \ + --auth-provider-arg=id-token=( your id_token ) +``` + +As an example, running the below command after authenticating to your identity provider: + +```bash +kubectl config set-credentials mmosley \ + --auth-provider=oidc \ + --auth-provider-arg=idp-issuer-url=https://oidcidp.tremolo.lan:8443/auth/idp/OidcIdP \ + --auth-provider-arg=client-id=kubernetes \ + --auth-provider-arg=client-secret=1db158f6-177d-4d9c-8a8b-d36869918ec5 \ + --auth-provider-arg=refresh-token=q1bKLFOyUiosTfawzA93TzZIDzH2TNa2SMm0zEiPKTUwME6BkEo6Sql5yUWVBSWpKUGphaWpxSVAfekBOZbBhaEW+VlFUeVRGcluyVF5JT4+haZmPsluFoFu5XkpXk5BXqHega4GAXlF+ma+vmYpFcHe5eZR+slBFpZKtQA= \ + --auth-provider-arg=idp-certificate-authority=/root/ca.pem \ + --auth-provider-arg=id-token=eyJraWQiOiJDTj1vaWRjaWRwLnRyZW1vbG8ubGFuLCBPVT1EZW1vLCBPPVRybWVvbG8gU2VjdXJpdHksIEw9QXJsaW5ndG9uLCBTVD1WaXJnaW5pYSwgQz1VUy1DTj1rdWJlLWNhLTEyMDIxNDc5MjEwMzYwNzMyMTUyIiwiYWxnIjoiUlMyNTYifQ.eyJpc3MiOiJodHRwczovL29pZGNpZHAudHJlbW9sby5sYW46ODQ0My9hdXRoL2lkcC9PaWRjSWRQIiwiYXVkIjoia3ViZXJuZXRlcyIsImV4cCI6MTQ4MzU0OTUxMSwianRpIjoiMm96US15TXdFcHV4WDlHZUhQdy1hZyIsImlhdCI6MTQ4MzU0OTQ1MSwibmJmIjoxNDgzNTQ5MzMxLCJzdWIiOiI0YWViMzdiYS1iNjQ1LTQ4ZmQtYWIzMC0xYTAxZWU0MWUyMTgifQ.w6p4J_6qQ1HzTG9nrEOrubxIMb9K5hzcMPxc9IxPx2K4xO9l-oFiUw93daH3m5pluP6K7eOE6txBuRVfEcpJSwlelsOsW8gb8VJcnzMS9EnZpeA0tW_p-mnkFc3VcfyXuhe5R3G7aa5d8uHv70yJ9Y3-UhjiN9EhpMdfPAoEB9fYKKkJRzF7utTTIPGrSaSU6d2pcpfYKaxIwePzEkT4DfcQthoZdy9ucNvvLoi1DIC-UocFD8HLs8LYKEqSxQvOcvnThbObJ9af71EwmuE21fO5KzMW20KtAeget1gnldOosPtz1G5EwvaQ401-RPQzPGMVBld0_zMCAwZttJ4knw +``` + +Which would produce the below configuration: + +```yaml +users: +- name: mmosley + user: + auth-provider: + config: + client-id: kubernetes + client-secret: 1db158f6-177d-4d9c-8a8b-d36869918ec5 + id-token: eyJraWQiOiJDTj1vaWRjaWRwLnRyZW1vbG8ubGFuLCBPVT1EZW1vLCBPPVRybWVvbG8gU2VjdXJpdHksIEw9QXJsaW5ndG9uLCBTVD1WaXJnaW5pYSwgQz1VUy1DTj1rdWJlLWNhLTEyMDIxNDc5MjEwMzYwNzMyMTUyIiwiYWxnIjoiUlMyNTYifQ.eyJpc3MiOiJodHRwczovL29pZGNpZHAudHJlbW9sby5sYW46ODQ0My9hdXRoL2lkcC9PaWRjSWRQIiwiYXVkIjoia3ViZXJuZXRlcyIsImV4cCI6MTQ4MzU0OTUxMSwianRpIjoiMm96US15TXdFcHV4WDlHZUhQdy1hZyIsImlhdCI6MTQ4MzU0OTQ1MSwibmJmIjoxNDgzNTQ5MzMxLCJzdWIiOiI0YWViMzdiYS1iNjQ1LTQ4ZmQtYWIzMC0xYTAxZWU0MWUyMTgifQ.w6p4J_6qQ1HzTG9nrEOrubxIMb9K5hzcMPxc9IxPx2K4xO9l-oFiUw93daH3m5pluP6K7eOE6txBuRVfEcpJSwlelsOsW8gb8VJcnzMS9EnZpeA0tW_p-mnkFc3VcfyXuhe5R3G7aa5d8uHv70yJ9Y3-UhjiN9EhpMdfPAoEB9fYKKkJRzF7utTTIPGrSaSU6d2pcpfYKaxIwePzEkT4DfcQthoZdy9ucNvvLoi1DIC-UocFD8HLs8LYKEqSxQvOcvnThbObJ9af71EwmuE21fO5KzMW20KtAeget1gnldOosPtz1G5EwvaQ401-RPQzPGMVBld0_zMCAwZttJ4knw + idp-certificate-authority: /root/ca.pem + idp-issuer-url: https://oidcidp.tremolo.lan:8443/auth/idp/OidcIdP + refresh-token: q1bKLFOyUiosTfawzA93TzZIDzH2TNa2SMm0zEiPKTUwME6BkEo6Sql5yUWVBSWpKUGphaWpxSVAfekBOZbBhaEW+VlFUeVRGcluyVF5JT4+haZmPsluFoFu5XkpXk5BXq + name: oidc +``` +Once your `id_token` expires, `kubectl` will attempt to refresh your `id_token` using your `refresh_token` and `client_secret` storing the new values for the `refresh_token` and `id_token` in your `kube/.config`. + + +##### Option 2 - Use the `--token` Option + +The `kubectl` command lets you pass in a token using the `--token` option. Simply copy and paste the `id_token` into this option: + +``` +kubectl --token=eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL21sYi50cmVtb2xvLmxhbjo4MDQzL2F1dGgvaWRwL29pZGMiLCJhdWQiOiJrdWJlcm5ldGVzIiwiZXhwIjoxNDc0NTk2NjY5LCJqdGkiOiI2RDUzNXoxUEpFNjJOR3QxaWVyYm9RIiwiaWF0IjoxNDc0NTk2MzY5LCJuYmYiOjE0NzQ1OTYyNDksInN1YiI6Im13aW5kdSIsInVzZXJfcm9sZSI6WyJ1c2VycyIsIm5ldy1uYW1lc3BhY2Utdmlld2VyIl0sImVtYWlsIjoibXdpbmR1QG5vbW9yZWplZGkuY29tIn0.f2As579n9VNoaKzoF-dOQGmXkFKf1FMyNV0-va_B63jn-_n9LGSCca_6IVMP8pO-Zb4KvRqGyTP0r3HkHxYy5c81AnIh8ijarruczl-TK_yF5akjSTHFZD-0gRzlevBDiH8Q79NAr-ky0P4iIXS8lY9Vnjch5MF74Zx0c3alKJHJUnnpjIACByfF2SCaYzbWFMUNat-K1PaUk5-ujMBG7yYnr95xD-63n8CO8teGUAAEMx6zRjzfhnhbzX-ajwZLGwGUBT4WqjMs70-6a7_8gZmLZb2az1cZynkFRj2BaCkVT3A2RrjeEwZEtGXlMqKJ1_I2ulrOVsYx01_yD35-rw get nodes +``` + ### Webhook Token Authentication @@ -369,12 +446,12 @@ HTTP status codes can be used to supply additional error context. The API server can be configured to identify users from request header values, such as `X-Remote-User`. It is designed for use in combination with an authenticating proxy, which sets the request header value. In order to prevent header spoofing, the authenticating proxy is required to present a valid client -certificate to the API server for validation against the specified CA before the request headers are +certificate to the API server for validation against the specified CA before the request headers are checked. * `--requestheader-username-headers` Required, case-insensitive. Header names to check, in order, for the user identity. The first header containing a value is used as the identity. * `--requestheader-client-ca-file` Required. PEM-encoded certificate bundle. A valid client certificate must be presented and validated against the certificate authorities in the specified file before the request headers are checked for user names. -* `--requestheader-allowed-names` Optional. List of common names (cn). If set, a valid client certificate with a Common Name (cn) in the specified list must be presented before the request headers are checked for user names. If empty, any Common Name is allowed. +* `--requestheader-allowed-names` Optional. List of common names (cn). If set, a valid client certificate with a Common Name (cn) in the specified list must be presented before the request headers are checked for user names. If empty, any Common Name is allowed. ### Keystone Password @@ -402,18 +479,18 @@ changes](https://github.com/kubernetes/kubernetes/pull/25536) for more details. ## Anonymous requests -Anonymous access is enabled by default, and can be disabled by passing `--anonymous-auth=false` +Anonymous access is enabled by default, and can be disabled by passing `--anonymous-auth=false` option to the API server during startup. -When enabled, requests that are not rejected by other configured authentication methods are -treated as anonymous requests, and given a username of `system:anonymous` and a group of +When enabled, requests that are not rejected by other configured authentication methods are +treated as anonymous requests, and given a username of `system:anonymous` and a group of `system:unauthenticated`. For example, on a server with token authentication configured, and anonymous access enabled, -a request providing an invalid bearer token would receive a `401 Unauthorized` error. -A request providing no bearer token would be treated as an anonymous request. +a request providing an invalid bearer token would receive a `401 Unauthorized` error. +A request providing no bearer token would be treated as an anonymous request. -If you rely on authentication alone to authorize access, either change to use an +If you rely on authentication alone to authorize access, either change to use an authorization mode other than `AlwaysAllow`, or set `--anonymous-auth=false`. ## Plugin Development diff --git a/images/docs/admin/k8s_oidc_login.svg b/images/docs/admin/k8s_oidc_login.svg new file mode 100644 index 0000000000..f9b5bbd93d --- /dev/null +++ b/images/docs/admin/k8s_oidc_login.svg @@ -0,0 +1 @@ +IdentityProviderKubectlUser1.LogintoIdP2.Provideacces_token,id_tokenandrefresh_tokenAPIServer3.Callkubectlwith --tokenbeingtheid_tokenORaddtokensto .kubectl/config4.Authorization:Bearer...8.Authorized :performactionandreturnresult9.Returnresult6.HastheJWTexpired?(iat +exp)7.UserAuthorized?5.IsJWTsignaturevalid? \ No newline at end of file From 284f5c4735617f8dd2b9fda80b4c874f844b7d68 Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 17 Jan 2017 10:37:52 -0800 Subject: [PATCH 033/132] Remove broken link Remove broken link to "persistent volume provisioning" --- docs/tutorials/stateful-application/basic-stateful-set.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/tutorials/stateful-application/basic-stateful-set.md b/docs/tutorials/stateful-application/basic-stateful-set.md index e17f67e3fb..179dd94f71 100644 --- a/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/docs/tutorials/stateful-application/basic-stateful-set.md @@ -25,7 +25,6 @@ following Kubernetes concepts. * [Cluster DNS](/docs/admin/dns/) * [Headless Services](/docs/user-guide/services/#headless-services) * [PersistentVolumes](/docs/user-guide/volumes/) -* [PersistentVolume Provisioning](http://releases.k8s.io/{{page.githubbranch}}/examples/experimental/persistent-volume-provisioning/) * [StatefulSets](/docs/concepts/abstractions/controllers/statefulsets/) * [kubectl CLI](/docs/user-guide/kubectl) From f83bd527d431544a6d50ad0e8095a7777c117799 Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 17 Jan 2017 10:52:12 -0800 Subject: [PATCH 034/132] Renamed "Petset" to Statefulset Renamed feature, fixed link https://github.com/kubernetes/kubernetes.github.io/issues/2240 --- docs/user-guide/pods/init-container.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/pods/init-container.md b/docs/user-guide/pods/init-container.md index 82524ba753..b6f0cece35 100644 --- a/docs/user-guide/pods/init-container.md +++ b/docs/user-guide/pods/init-container.md @@ -79,8 +79,8 @@ Here are some ideas for how to use init containers: to generate a configuration file to be consumed by the main app contianer. ``` -Complete usage examples can be found in the [PetSets -guide](docs/user-guide/petset/bootstrapping/index.md) and the [Production Pods +Complete usage examples can be found in the [StatefulSets +documentation](/docs/concepts/abstractions/controllers/statefulsets/) and the [Production Pods guide](/docs/user-guide/production-pods.md#handling-initialization). From 26385f0e46a85da5c8d3cc2f0e2a20f869d71484 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Tue, 10 Jan 2017 15:49:33 -0800 Subject: [PATCH 035/132] Write new Task: Attaching Handlers to Container Lifecycle Events. --- _data/tasks.yml | 3 +- .../attach-handler-lifecycle-event.md | 72 +++++++++++++++++++ .../lifecycle-events.yaml | 33 +++++++++ docs/tasks/index.md | 1 + 4 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md create mode 100644 docs/tasks/configure-pod-container/lifecycle-events.yaml diff --git a/_data/tasks.yml b/_data/tasks.yml index 9605e925b0..13315bf5ed 100644 --- a/_data/tasks.yml +++ b/_data/tasks.yml @@ -13,7 +13,8 @@ toc: - docs/tasks/configure-pod-container/pull-image-private-registry.md - docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md - docs/tasks/configure-pod-container/communicate-containers-same-pod.md - - docs/tasks/configure-pod-container/configure-pod-initialization.md + - docs/tasks/configure-pod-container/configure-pod-initialization.md + - docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md - title: Accessing Applications in a Cluster section: diff --git a/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md new file mode 100644 index 0000000000..e6492c7577 --- /dev/null +++ b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md @@ -0,0 +1,72 @@ +--- +title: Attaching Handlers to Container Lifecycle Events +--- + +{% capture overview %} + +This page shows how to attach handlers to Container lifecycle events. Kubernetes supports +the postStart event and the preStop event. Kubernetes sends the postStart event immediately +after a Container is started, and it sends the preStop event immediately before the +Container is terminated. + +{% endcapture %} + + +{% capture prerequisites %} + +{% include task-tutorial-prereqs.md %} + +{% endcapture %} + + +{% capture steps %} + +### Defining postStart and preStop handlers + +In this exercise, you create a Pod that has one Container. The Container has handlers +for the postStart and preStop events. + +Here is the configuration file for the Pod: + +{% include code.html language="yaml" file="lifecycle-events.yaml" ghlink="/docs/tasks/configure-pod-container/lifecycle-events.yaml" %} + +In the configuration file, you can see that the postStart command writes a `message` +file to the Container's `/usr/share` directory. The preStop command shuts down +nginx gracefully. This is helpful if the Container is being terminated because of a failure. + +Create the Pod: + + kubectl create -f http://k8s.io/docs/tasks/configure-pod-container/lifecycle-events.yaml + +Verify that the Container in the Pod is running: + + kubectl get pod lifecycle-demo + +Get a shell into the Container running in your Pod: + + kubectl exec -it lifecycle-demo -- /bin/bash + +In your shell, verify that the `postStart` handler created the `message` file: + + root@lifecycle-demo:/# cat /usr/share/message + +The output shows the text written by the postStart handler: + + Hello from the postStart handler + +{% endcapture %} + + +{% capture whatsnext %} + +* Learn more about [Container lifecycle hooks](/docs/user-guide/container-environment/.) +* Learn more about the [lifecycle of a Pod](https://kubernetes.io/docs/user-guide/pod-states/). + +#### Reference + +* [Lifecycle](https://kubernetes.io/docs/resources-reference/1_5/#lifecycle-v1) +* [Container](https://kubernetes.io/docs/resources-reference/1_5/#container-v1) + +{% endcapture %} + +{% include templates/task.md %} diff --git a/docs/tasks/configure-pod-container/lifecycle-events.yaml b/docs/tasks/configure-pod-container/lifecycle-events.yaml new file mode 100644 index 0000000000..c62028d7ef --- /dev/null +++ b/docs/tasks/configure-pod-container/lifecycle-events.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: Pod +metadata: + name: lifecycle-demo +spec: + containers: + - name: lifecycle-demo-container + image: nginx + + lifecycle: + postStart: + exec: + command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"] + preStop: + exec: + command: ["/usr/sbin/nginx","-s","quit"] + + + + + + + + + + + + + + + + + diff --git a/docs/tasks/index.md b/docs/tasks/index.md index 2482a13677..b9d0284d5e 100644 --- a/docs/tasks/index.md +++ b/docs/tasks/index.md @@ -17,6 +17,7 @@ single thing, typically by giving a short sequence of steps. * [Configuring Liveness and Readiness Probes](/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/) * [Communicating Between Pods Running in the Same Container](/docs/tasks/configure-pod-container/communicate-containers-same-pod/) * [Configuring Pod Initialization](/docs/tasks/configure-pod-container/configure-pod-initialization/) +* [Attaching Handlers to Container Lifecycle Events](/docs/tasks/configure-pod-container/attach-handler-lifecycle-event/) #### Accessing Applications in a Cluster From 6a6028c72704842d43a4668530ad4f43e33d4ee8 Mon Sep 17 00:00:00 2001 From: steveperry-53 Date: Tue, 17 Jan 2017 12:40:55 -0800 Subject: [PATCH 036/132] Address reviewer comments. --- .../attach-handler-lifecycle-event.md | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md index e6492c7577..715ea3effb 100644 --- a/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md +++ b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md @@ -5,7 +5,7 @@ title: Attaching Handlers to Container Lifecycle Events {% capture overview %} This page shows how to attach handlers to Container lifecycle events. Kubernetes supports -the postStart event and the preStop event. Kubernetes sends the postStart event immediately +the postStart and preStop events. Kubernetes sends the postStart event immediately after a Container is started, and it sends the preStop event immediately before the Container is terminated. @@ -57,15 +57,37 @@ The output shows the text written by the postStart handler: {% endcapture %} + +{% capture discussion %} + +### Discussion + +Kubernetes sends the postStart event immediately after the Container is created. +There is no guarantee, however, that the postStart handler is called before +the Container's entrypoint is called. The postStart handler runs asynchronously +relative to the Container's code, but Kubernetes' management of the container +blocks until the postStart handler completes. The Container's status is not +set to RUNNING until the postStart handler completes. + +Kubernetes sends the preStop event immediately before the Container is terminated. +Kubernetes' management of the Container blocks until the preStop handler completes, +unless the Pod's grace period expires. For more details, see +[Termination of Pods](/docs/user-guide/pods/#termination-of-pods). + +{% endcapture %} + + {% capture whatsnext %} * Learn more about [Container lifecycle hooks](/docs/user-guide/container-environment/.) * Learn more about the [lifecycle of a Pod](https://kubernetes.io/docs/user-guide/pod-states/). -#### Reference +#### Reference + * [Lifecycle](https://kubernetes.io/docs/resources-reference/1_5/#lifecycle-v1) * [Container](https://kubernetes.io/docs/resources-reference/1_5/#container-v1) +* See `terminationGracePeriodSeconds` in [PodSpec](/docs/resources-reference/v1.5/#podspec-v1) {% endcapture %} From 8858b56753fab59c5f432ca4da837f682fe8e46a Mon Sep 17 00:00:00 2001 From: Nathan Quarles Date: Mon, 16 Jan 2017 09:38:07 -0500 Subject: [PATCH 037/132] grammar fix --- docs/tutorials/kubernetes-basics/explore-intro.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/kubernetes-basics/explore-intro.html b/docs/tutorials/kubernetes-basics/explore-intro.html index e16d2a0755..5f5cb6354e 100644 --- a/docs/tutorials/kubernetes-basics/explore-intro.html +++ b/docs/tutorials/kubernetes-basics/explore-intro.html @@ -28,7 +28,7 @@ title: Viewing Pods and Nodes

Kubernetes Pods

-

When you created a Deployment in Module 2, Kubernetes created a Pod to host your application instance. A Pod is Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:

+

When you created a Deployment in Module 2, Kubernetes created a Pod to host your application instance. A Pod is a Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:

  • Shared storage, as Volumes
  • Networking, as a unique cluster IP address
  • From 2495fb890d6fa5346cfbd6230ba08abf579b80c9 Mon Sep 17 00:00:00 2001 From: Francesc Rosas Date: Tue, 17 Jan 2017 14:57:48 +0000 Subject: [PATCH 038/132] Fix jsonpath --- docs/getting-started-guides/minikube.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index 65b7893be5..731ad1c9a4 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -225,7 +225,7 @@ Any services of type `NodePort` can be accessed over that IP address, on the Nod To determine the NodePort for your service, you can use a `kubectl` command like this: -`kubectl get service $SERVICE --output='jsonpath="{.spec.ports[0].NodePort}"'` +`kubectl get service $SERVICE --output='jsonpath="{.spec.ports[0].nodePort}"'` ## Persistent Volumes Minikube supports [PersistentVolumes](http://kubernetes.io/docs/user-guide/persistent-volumes/) of type `hostPath`. From 4a33f4f44c2648806ca77e60012c970d9968d607 Mon Sep 17 00:00:00 2001 From: Janet Kuo Date: Tue, 17 Jan 2017 15:16:27 -0800 Subject: [PATCH 039/132] Fix travis failure by bumping go version to 1.7.3 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 33db17d9e7..791d289e88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.6.2 + - 1.7.3 # Don't want default ./... here: install: From 705f74fad0b6b69ed9dc693ba484e378d50f71c7 Mon Sep 17 00:00:00 2001 From: Michael Mrowetz Date: Fri, 13 Jan 2017 17:16:16 +0900 Subject: [PATCH 040/132] de-duplicated sentence. --- docs/admin/salt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/salt.md b/docs/admin/salt.md index d2479ffff2..ab495521bd 100644 --- a/docs/admin/salt.md +++ b/docs/admin/salt.md @@ -6,7 +6,7 @@ title: Configuring Kubernetes with Salt The Kubernetes cluster can be configured using Salt. -The Salt scripts are shared across multiple hosting providers, so it's important to understand some background information prior to making a modification to ensure your changes do not break hosting Kubernetes across multiple environments. Depending on where you host your Kubernetes cluster, you may be using different operating systems and different networking configurations. As a result, it's important to understand some background information before making Salt changes in order to minimize introducing failures for other hosting providers. +The Salt scripts are shared across multiple hosting providers and depending on where you host your Kubernetes cluster, you may be using different operating systems and different networking configurations. As a result, it's important to understand some background information before making Salt changes in order to minimize introducing failures for other hosting providers. ## Salt cluster setup From 7ca44701da52f467a5aeebcfefbe9131c2c6d69f Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 17 Jan 2017 16:13:36 -0800 Subject: [PATCH 041/132] Update minikube.md --- docs/getting-started-guides/minikube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index 495c68130b..7e47aeadd6 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -157,11 +157,11 @@ This command also configures your [kubectl](http://kubernetes.io/docs/user-guide If you are behind a web proxy, you will need to pass this information in e.g. via ``` - https_proxy= minikube start --docker-env HTTP_PROXY= --docker-env HTTPS_PROXY= --docker-env NO_PROXY=192.168.99.0/24 +``` Unfortunately just setting the environment variables will not work. -``` + Minikube will also create a "minikube" context, and set it to default in kubectl. To switch back to this context later, run this command: `kubectl config use-context minikube`. From 1e40f9fea5ffb24bfc642f7acfb9d990cf2b7160 Mon Sep 17 00:00:00 2001 From: caiyixiang Date: Tue, 17 Jan 2017 18:21:05 +0800 Subject: [PATCH 042/132] Update index.md --- docs/user-guide/horizontal-pod-autoscaling/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/horizontal-pod-autoscaling/index.md b/docs/user-guide/horizontal-pod-autoscaling/index.md index 81d2c7aca2..44ad3440e2 100644 --- a/docs/user-guide/horizontal-pod-autoscaling/index.md +++ b/docs/user-guide/horizontal-pod-autoscaling/index.md @@ -26,7 +26,7 @@ The autoscaler is implemented as a control loop. It periodically queries CPU utilization for the pods it targets. (The period of the autoscaler is controlled by `--horizontal-pod-autoscaler-sync-period` flag of controller manager. The default value is 30 seconds). -Then, it compares the arithmetic mean of the pods' CPU utilization with the target and adjust the number of replicas if needed. +Then, it compares the arithmetic mean of the pod's CPU utilization with the target and adjust the number of replicas if needed. CPU utilization is the recent CPU usage of a pod divided by the sum of CPU requested by the pod's containers. Please note that if some of the pod's containers do not have CPU request set, @@ -90,7 +90,7 @@ The cluster has to be started with `ENABLE_CUSTOM_METRICS` environment variable ### Pod configuration The pods to be scaled must have cAdvisor-specific custom (aka application) metrics endpoint configured. The configuration format is described [here](https://github.com/google/cadvisor/blob/master/docs/application_metrics.md). Kubernetes expects the configuration to - be placed in `definition.json` mounted via a [config map](/docs/user-guide/configmap/) in `/etc/custom-metrics`. A sample config map may look like this: + be placed in `definition.json` mounted via a [configMap](/docs/user-guide/configmap/) in `/etc/custom-metrics`. A sample config map may look like this: ```yaml apiVersion: v1 From 4bd2d4ce8ef266b2eebf6060e837785dd07e618a Mon Sep 17 00:00:00 2001 From: caiyixiang Date: Wed, 18 Jan 2017 08:33:28 +0800 Subject: [PATCH 043/132] Update ingress.md --- docs/user-guide/ingress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/ingress.md b/docs/user-guide/ingress.md index f27788ccf9..9768044bc9 100644 --- a/docs/user-guide/ingress.md +++ b/docs/user-guide/ingress.md @@ -69,7 +69,7 @@ spec: *POSTing this to the API server will have no effect if you have not configured an [Ingress controller](#ingress-controllers).* -__Lines 1-4__: As with all other Kubernetes config, an Ingress needs `apiVersion`, `kind`, and `metadata` fields. For general information about working with config files, see [here](docs/user-guide/deploying-applications), [here](/docs/user-guide/configuring-containers), and [here](/docs/user-guide/working-with-resources). +__Lines 1-4__: As with all other Kubernetes config, an Ingress needs `apiVersion`, `kind`, and `metadata` fields. For general information about working with config files, see [here](/docs/user-guide/deploying-applications), [here](/docs/user-guide/configuring-containers), and [here](/docs/user-guide/working-with-resources). __Lines 5-7__: Ingress [spec](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/docs/devel/api-conventions.md#spec-and-status) has all the information needed to configure a loadbalancer or proxy server. Most importantly, it contains a list of rules matched against all incoming requests. Currently the Ingress resource only supports http rules. From a2d0e7c1655c8820a35bd34491dc70a2b637aa9a Mon Sep 17 00:00:00 2001 From: xilabao Date: Tue, 17 Jan 2017 02:29:16 -0600 Subject: [PATCH 044/132] update role example --- docs/admin/authorization.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/admin/authorization.md b/docs/admin/authorization.md index c9dd662449..8f2b60472c 100644 --- a/docs/admin/authorization.md +++ b/docs/admin/authorization.md @@ -259,7 +259,6 @@ rules: - apiGroups: [""] # The API group "" indicates the core API Group. resources: ["pods"] verbs: ["get", "watch", "list"] - nonResourceURLs: [] ``` `ClusterRoles` hold the same information as a `Role` but can apply to any From 4fb669be1176051ec83009e308f3703bc6b5e448 Mon Sep 17 00:00:00 2001 From: gregoplex Date: Tue, 17 Jan 2017 20:35:24 -0500 Subject: [PATCH 045/132] Fixed doc typo --- .../v1.5/documents/_generated_pod_v1_concept.md | 4 ++-- docs/api-reference/v1.5/index.html | 6 +++--- .../v1.5/documents/_generated_pod_v1_concept.md | 2 +- docs/resources-reference/v1.5/index.html | 4 ++-- .../kubectl/v1.5/documents/_generated_pod_v1_concept.md | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md index c2ee5b3e4c..6d8c03649d 100644 --- a/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md +++ b/docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md @@ -8,7 +8,7 @@ ```bdocs-tab:kubectl_yaml apiVersion: v1 -kind: Pob +kind: Pod metadata: name: pod-example spec: @@ -24,7 +24,7 @@ spec: ```bdocs-tab:curl_yaml apiVersion: v1 -kind: Pob +kind: Pod metadata: name: pod-example spec: diff --git a/docs/api-reference/v1.5/index.html b/docs/api-reference/v1.5/index.html index cc96bf697e..a665a89afe 100644 --- a/docs/api-reference/v1.5/index.html +++ b/docs/api-reference/v1.5/index.html @@ -7525,7 +7525,7 @@ $ kubectl get job example-job apiVersion: v1 -kind: Pob +kind: Pod metadata: name: pod-example spec: @@ -7539,7 +7539,7 @@ $ kubectl get job example-job apiVersion: v1 -kind: Pob +kind: Pod metadata: name: pod-example spec: @@ -51827,4 +51827,4 @@ Appears In Scale - \ No newline at end of file + diff --git a/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md b/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md index 6f6dd45764..ecba5a31be 100644 --- a/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md +++ b/docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md @@ -8,7 +8,7 @@ ```bdocs-tab:example_yaml apiVersion: v1 -kind: Pob +kind: Pod metadata: name: pod-example spec: diff --git a/docs/resources-reference/v1.5/index.html b/docs/resources-reference/v1.5/index.html index 78713687ec..688ce5a06e 100644 --- a/docs/resources-reference/v1.5/index.html +++ b/docs/resources-reference/v1.5/index.html @@ -947,7 +947,7 @@ Appears In Job

 apiVersion: v1
-kind: Pob
+kind: Pod
 metadata:
   name: pod-example
 spec:
@@ -10846,4 +10846,4 @@ Appears In Scale 
 
 
 
-
\ No newline at end of file
+
diff --git a/docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_concept.md b/docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_concept.md
index 0a7e20fdd3..603087e505 100644
--- a/docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_concept.md
+++ b/docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_concept.md
@@ -8,7 +8,7 @@
 ```bdocs-tab:kubectl_yaml
 
 apiVersion: v1
-kind: Pob
+kind: Pod
 metadata:
   name: pod-example
 spec:
@@ -24,7 +24,7 @@ spec:
 ```bdocs-tab:curl_yaml
 
 apiVersion: v1
-kind: Pob
+kind: Pod
 metadata:
   name: pod-example
 spec:

From f86d09dab3d0e46c27b2c2b7ddede3fb4713bcff Mon Sep 17 00:00:00 2001
From: Peter Lee 
Date: Wed, 18 Jan 2017 12:57:01 +0800
Subject: [PATCH 046/132] fix broken link

---
 docs/getting-started-guides/dcos.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/getting-started-guides/dcos.md b/docs/getting-started-guides/dcos.md
index d99f2d332e..5479ec10b9 100644
--- a/docs/getting-started-guides/dcos.md
+++ b/docs/getting-started-guides/dcos.md
@@ -32,7 +32,7 @@ Explore the following resources for more information about Kubernetes, Kubernete
 - [DCOS Documentation](https://docs.mesosphere.com/)
 - [Managing DCOS Services](https://docs.mesosphere.com/services/kubernetes/)
 - [Kubernetes Examples](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/)
-- [Kubernetes on Mesos Documentation](https://releases.k8s.io/{{page.githubbranch}}/contrib/mesos/README.md)
+- [Kubernetes on Mesos Documentation](https://github.com/kubernetes-incubator/kube-mesos-framework/blob/master/README.md)
 - [Kubernetes on Mesos Release Notes](https://github.com/mesosphere/kubernetes-mesos/releases)
 - [Kubernetes on DCOS Package Source](https://github.com/mesosphere/kubernetes-mesos)
 

From fe1640a71e186235865f94b8dbcb0350f98cda64 Mon Sep 17 00:00:00 2001
From: Peter Lee 
Date: Wed, 18 Jan 2017 16:48:45 +0800
Subject: [PATCH 047/132] fix yaml source links of addons

---
 docs/admin/cluster-large.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/admin/cluster-large.md b/docs/admin/cluster-large.md
index 08d6d6c0d8..13788fdffb 100644
--- a/docs/admin/cluster-large.md
+++ b/docs/admin/cluster-large.md
@@ -99,13 +99,13 @@ To avoid running into cluster addon resource issues, when creating a cluster wit
 
 * Scale memory and CPU limits for each of the following addons, if used, as you scale up the size of cluster (there is one replica of each handling the entire cluster so memory and CPU usage tends to grow proportionally with size/load on cluster):
   * [InfluxDB and Grafana](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/cluster-monitoring/influxdb/influxdb-grafana-controller.yaml)
-  * [skydns, kube2sky, and dns etcd](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/skydns-rc.yaml.in)
+  * [kubedns, dnsmasq, and sidecar](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/kubedns-controller.yaml.in)
   * [Kibana](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/fluentd-elasticsearch/kibana-controller.yaml)
 * Scale number of replicas for the following addons, if used, along with the size of cluster (there are multiple replicas of each so increasing replicas should help handle increased load, but, since load per replica also increases slightly, also consider increasing CPU/memory limits):
   * [elasticsearch](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/fluentd-elasticsearch/es-controller.yaml)
 * Increase memory and CPU limits slightly for each of the following addons, if used, along with the size of cluster (there is one replica per node but CPU/memory usage increases slightly along with cluster load/size as well):
-  * [FluentD with ElasticSearch Plugin](http://releases.k8s.io/{{page.githubbranch}}/cluster/saltbase/salt/fluentd-es/fluentd-es.yaml)
-  * [FluentD with GCP Plugin](http://releases.k8s.io/{{page.githubbranch}}/cluster/saltbase/salt/fluentd-gcp/fluentd-gcp.yaml)
+  * [FluentD with ElasticSearch Plugin](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/fluentd-elasticsearch/fluentd-es-ds.yaml)
+  * [FluentD with GCP Plugin](http://releases.k8s.io/{{page.githubbranch}}/cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml)
 
 Heapster's resource limits are set dynamically based on the initial size of your cluster (see [#16185](http://issue.k8s.io/16185)
 and [#22940](http://issue.k8s.io/22940)). If you find that Heapster is running

From 56bac5a74938bb907630266799ff9318e0ed1a5c Mon Sep 17 00:00:00 2001
From: ahawtho 
Date: Wed, 18 Jan 2017 09:48:56 -0500
Subject: [PATCH 048/132] Fix link on environment-guide

The 'pod definition' link in the 'Query the service' section had an incorrect link.
---
 docs/user-guide/environment-guide/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/user-guide/environment-guide/index.md b/docs/user-guide/environment-guide/index.md
index 417cf5be33..cbdd806ecd 100644
--- a/docs/user-guide/environment-guide/index.md
+++ b/docs/user-guide/environment-guide/index.md
@@ -79,7 +79,7 @@ First the frontend pod's information is printed. The pod name and
 [namespace](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/namespaces.md) are retrieved from the
 [Downward API](/docs/user-guide/downward-api). Next, `USER_VAR` is the name of
 an environment variable set in the [pod
-definition](/docs/user-guide/environment-guide/show-rc.yaml). Then, the dynamic Kubernetes environment
+definition](https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/user-guide/environment-guide/show-rc.yaml). Then, the dynamic Kubernetes environment
 variables are scanned and printed. These are used to find the backend
 service, named `backend-srv`. Finally, the frontend pod queries the
 backend service and prints the information returned. Again the backend

From 0168fbc0299dfc2c9ba4eee1023154b6edf8ad6e Mon Sep 17 00:00:00 2001
From: khalpin11 
Date: Wed, 18 Jan 2017 09:32:37 -0700
Subject: [PATCH 049/132] Fix docs typo

"Action use IaaS providers reliable storage (e.g. GCE PD or AWS EBS volume) for VMs with apiserver+etcd" did not follow the same format as other actions in this section.
---
 docs/admin/cluster-troubleshooting.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/admin/cluster-troubleshooting.md b/docs/admin/cluster-troubleshooting.md
index ff8358a7a9..7e11eb12b0 100644
--- a/docs/admin/cluster-troubleshooting.md
+++ b/docs/admin/cluster-troubleshooting.md
@@ -89,7 +89,7 @@ Mitigations:
   - Mitigates: Apiserver VM shutdown or apiserver crashing
   - Mitigates: Supporting services VM shutdown or crashes
 
-- Action use IaaS providers reliable storage (e.g. GCE PD or AWS EBS volume) for VMs with apiserver+etcd
+- Action: Use IaaS providers reliable storage (e.g. GCE PD or AWS EBS volume) for VMs with apiserver+etcd
   - Mitigates: Apiserver backing storage lost
 
 - Action: Use (experimental) [high-availability](/docs/admin/high-availability) configuration
@@ -112,4 +112,4 @@ Mitigations:
   - Mitigates: Kubelet software fault
 
 - Action: [Multiple independent clusters](/docs/admin/multi-cluster) (and avoid making risky changes to all clusters at once)
-  - Mitigates: Everything listed above.
\ No newline at end of file
+  - Mitigates: Everything listed above.

From f09116b8e347cb566d253314ec65582b04855b17 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 13:30:16 -0800
Subject: [PATCH 050/132] Moved pod termination info to a temporary, unlinked
 file.

Added title to abstractions overview and pod overview.
---
 docs/concepts/abstractions/overview.md        |  1 +
 docs/concepts/abstractions/pod-termination.md | 15 +++++++++++++++
 docs/concepts/abstractions/pod.md             | 15 +--------------
 3 files changed, 17 insertions(+), 14 deletions(-)
 create mode 100644 docs/concepts/abstractions/pod-termination.md

diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md
index 8407eecf43..7665607858 100644
--- a/docs/concepts/abstractions/overview.md
+++ b/docs/concepts/abstractions/overview.md
@@ -1,4 +1,5 @@
 ---
+title: Kubernetes Objects
 ---
 
 {% capture overview %}
diff --git a/docs/concepts/abstractions/pod-termination.md b/docs/concepts/abstractions/pod-termination.md
new file mode 100644
index 0000000000..5276dae617
--- /dev/null
+++ b/docs/concepts/abstractions/pod-termination.md
@@ -0,0 +1,15 @@
+---
+---
+
+####  Pod Termination
+
+Since Pods represent processes running on your cluster, Kubernetes provides for *graceful termination* when Pods are no longer needed. Kubernetes implements graceful termination by applying a default *grace period* of 30 seconds from the time that you issue a termination request. A typical Pod termination in Kubernetes involves the following steps:
+
+1. You send a command or API call to terminate the Pod.
+1. Kubernetes updates the Pod status to reflect the time after which the Pod is to be considered "dead" (the time of the termination request plus the grace period).
+1. Kubernetes marks the Pod state as "Terminating" and stops sending traffic to the Pod.
+1. Kubernetes send a `TERM` signal to the Pod, indicating that the Pod should shut down.
+1. When the grace period expires, Kubernetes issues a `SIGKILL` to any processes still running in the Pod.
+1. Kubernetes removes the Pod from the API server on the Kubernetes Master.
+
+> **Note:** The grace period is configurable; you can set your own grace period when interacting with the cluster to request termination, such as using the `kubectl delete` command. See the [Terminating a Pod]() tutorial for more information.
\ No newline at end of file
diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index fb65c8b33c..d41d2ad1ac 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -1,4 +1,5 @@
 ---
+title: Pods
 ---
 
 {% capture overview %}
@@ -9,7 +10,6 @@ This page provides an overview of `Pod`, the smallest deployable object in the K
 {:toc}
 
 {% capture body %}
-### Understanding Pods
 
 A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents a running process on your cluster.
 
@@ -67,19 +67,6 @@ Some examples of Controllers that contain one or more pods include:
 
 In general, Controllers use a [Pod Template]() that you provide to create the Pods for which it is responsible.
 
-####  Pod Termination
-
-Since Pods represent processes running on your cluster, Kubernetes provides for *graceful termination* when Pods are no longer needed. Kubernetes implements graceful termination by applying a default *grace period* of 30 seconds from the time that you issue a termination request. A typical Pod termination in Kubernetes involves the following steps:
-
-1. You send a command or API call to terminate the Pod.
-1. Kubernetes updates the Pod status to reflect the time after which the Pod is to be considered "dead" (the time of the termination request plus the grace period).
-1. Kubernetes marks the Pod state as "Terminating" and stops sending traffic to the Pod.
-1. Kubernetes send a `TERM` signal to the Pod, indicating that the Pod should shut down.
-1. When the grace period expires, Kubernetes issues a `SIGKILL` to any processes still running in the Pod.
-1. Kubernetes removes the Pod from the API server on the Kubernetes Master.
-
-> **Note:** The grace period is configurable; you can set your own grace period when interacting with the cluster to request termination, such as using the `kubectl delete` command. See the [Terminating a Pod]() tutorial for more information.
-
 {% endcapture %}
 
 

From 71d04d711491ec20a3bdf05cd8c0a1a29d40c598 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 13:45:21 -0800
Subject: [PATCH 051/132] Removed all blank links. Inserted links to
 StatefulSet content. Addressed remaining feedback.

---
 docs/concepts/abstractions/overview.md |  6 +++---
 docs/concepts/abstractions/pod.md      | 16 +++++++++-------
 docs/concepts/index.md                 | 20 +++++---------------
 3 files changed, 17 insertions(+), 25 deletions(-)

diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md
index 7665607858..2acadcafa5 100644
--- a/docs/concepts/abstractions/overview.md
+++ b/docs/concepts/abstractions/overview.md
@@ -21,9 +21,9 @@ To work with Kubernetes objects--whether to create, modify, or delete them--you'
 
 #### Object Spec and Status
 
-Every Kubernetes object includes two nested object fields that govern the object's configuration: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied and updated by the Kubernetes system. At any given time, the [Kubernetes Control Plane](/docs/concepts/control-plane/overview/) actively manages an object's actual state to match the desired state you supplied.
+Every Kubernetes object includes two nested object fields that govern the object's configuration: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied and updated by the Kubernetes system. At any given time, the Kubernetes Control Plane actively manages an object's actual state to match the desired state you supplied.
 
-For example, a Kubernetes [Deployment]() is an object that can represent an application running on your cluster. When you create the Deployment, you might set the Deployment spec to specify that you want three replicas of the application to be running. The Kubernetes system reads the Deployment spec and starts three instances of your desired application--updating the status to match your spec. If any of those instances should fail (a status change), the Kubernetes system reacts to the difference between spec and status by making a correction--in this case, starting a replacement instance.
+For example, a Kubernetes Deployment is an object that can represent an application running on your cluster. When you create the Deployment, you might set the Deployment spec to specify that you want three replicas of the application to be running. The Kubernetes system reads the Deployment spec and starts three instances of your desired application--updating the status to match your spec. If any of those instances should fail (a status change), the Kubernetes system reacts to the difference between spec and status by making a correction--in this case, starting a replacement instance.
 
 For more information on the object spec, status, and metadata, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status).
 
@@ -31,7 +31,7 @@ For more information on the object spec, status, and metadata, see the [Kubernet
 
 When you create an object in Kubernetes, you must provide the object spec that describes your desired state for it, as well as some basic information about the object (such as a name). When you use the Kubernetes API to create the object (either directly or via `kubectl`), that API call sends the information to the Kubernetes Master as JSON. **You can express that JSON using a `.yaml` file.**
 
-Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes [Deployment](/docs/concepts/abstractions/deployment/):
+Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes Deployment:
 
 {% include code.html language="yaml" file="/docs/user-guide/nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %}
 
diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index d41d2ad1ac..70c865b490 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -27,7 +27,9 @@ The [Kubernetes Blog](http://blog.kubernetes.io) has some additional information
 * [The Distributed System Toolkit: Patterns for Composite Containers](http://blog.kubernetes.io/2015/06/the-distributed-system-toolkit-patterns.html)
 * [Container Design Patterns](http://blog.kubernetes.io/2016/06/container-design-patterns.html)
 
-Note that each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, such Pods are usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information.
+Each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, such Pods are usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information.
+
+> Note: Restarting a container in a Pod should not be confused with _restarting_ the Pod itself.  The Pod itself does not run, but is an environment the containers run in and persists until it is deleted.
 
 #### How Pods Manage Multiple Containers
 
@@ -45,11 +47,11 @@ Each Pod is assigned a unique IP address. Every the container in a pod shares th
 
 ##### Storage
 
-A Pod can specify a set of shared storage *volumes*. All containers in the pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a pod to survive in case one of the containers within needs to be restarted. See [Volumes]() for more information on how Kubernetes implements shared storage in a Pod.
+A Pod can specify a set of shared storage *volumes*. All containers in the pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a pod to survive in case one of the containers within needs to be restarted. See Volumes for more information on how Kubernetes implements shared storage in a Pod.
 
 ### Working with Pods
 
-You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a [node]() in your cluster. The Pod remains on that node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources.
+You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a node in your your cluster. The Pod remains on that node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources.
 
 > Note: Restarting a container in a Pod should not be confused with restarting the Pod. The Pod itself does not run, but is an environment the containers run in and persists until it is deleted.
 
@@ -61,11 +63,11 @@ A Controller can create and manage multiple Pods for you, handling replication a
 
 Some examples of Controllers that contain one or more pods include:
 
-* [Deployment]()
-* [StatefulSet]()
-* [DaemonSet]()
+* Deployment
+* [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets/)
+* DaemonSet
 
-In general, Controllers use a [Pod Template]() that you provide to create the Pods for which it is responsible.
+In general, Controllers use a Pod Template that you provide to create the Pods for which it is responsible.
 
 {% endcapture %}
 
diff --git a/docs/concepts/index.md b/docs/concepts/index.md
index 1afc20d43b..9ae7b9134b 100644
--- a/docs/concepts/index.md
+++ b/docs/concepts/index.md
@@ -26,11 +26,11 @@ The basic Kubernetes objects include:
 * Volume
 * Namespace
 
-In addition, Kubernetes contains a number of higher-level abstractions that build upon the basic objects, and provide additional functionality and convenience features. They include:
+In addition, Kubernetes contains a number of higher-level abstractions called Controllers. Controllers build upon the basic objects, and provide additional functionality and convenience features. They include:
 
 * ReplicaSet
 * Deployment
-* StatefulSet
+* [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets/))
 * DaemonSet
 * Job
 
@@ -42,29 +42,19 @@ For example, When you use the Kubernetes API to create a Deployment object, for
 
 ### Kubernetes Master
 
-The Kubernetes master is responsible for maintaining the desired state for your cluster. The Kubernetes master(s) runs the following processes:
+The Kubernetes master is responsible for maintaining the desired state for your cluster. When you interact with Kubernetes, such as by using the `kubectl` command-line interface, you're communicating with your cluster's Kubernetes master.
 
-* API Server
-* Scheduler
-* Etcd
-* Controller Manager
+> The "master" refers to a collection of processes managing the cluster state.  Typically these processes are all run on a single node in the cluster, and this node is also referred to as the master. The master can also be replicated for availability and redundnacy.
 
 ### Kubernetes Nodes
 
-The nodes in a cluster are the machines (VMs, physical servers, etc) that run your applications and cloud workflows. These nodes are controlled by the Kubernetes master. The following processes run on each node in a Kubernetes cluster:
-
-* Kubelet
-* Docker-daemon
-* kube-proxy
+The nodes in a cluster are the machines (VMs, physical servers, etc) that run your applications and cloud workflows. The Kubernetes master controls each node; you'll rarely interact with nodes directly.
 
 #### Object Metadata
 
 
 * [Annotations](/docs/concepts/object-metadata/annotations/)
 
-#### Controllers
-* [StatefulSets](/docs/concepts/abstractions/controllers/statefulsets/)
-
 
 ### What's next
 

From 86d6b19a17cacbfaed786a17fab584ac3248475e Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 13:55:20 -0800
Subject: [PATCH 052/132] Added TOC entries and skip-titles entries for
 Concepts files.

---
 _data/concepts.yml   | 12 +++++++++---
 skip_title_check.txt |  1 +
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/_data/concepts.yml b/_data/concepts.yml
index a9a7c3eb29..69c3bed524 100644
--- a/_data/concepts.yml
+++ b/_data/concepts.yml
@@ -2,9 +2,15 @@ bigheader: "Concepts"
 abstract: "Detailed explanations of Kubernetes system concepts and abstractions."
 toc:
 - docs/concepts/index.md
+section:
+- title: Kubernetes Objects
+  section:
+  - docs/concepts/abstractions/overview.md
+  - docs/concepts/pod.md
+  - title: Controllers
+    section:
+    - docs/concepts/abstractions/controllers/statefulsets.md
+
 - title: Object Metadata
   section:
   - docs/concepts/object-metadata/annotations.md
-- title: Controllers
-  section:
-  - docs/concepts/abstractions/controllers/statefulsets.md
diff --git a/skip_title_check.txt b/skip_title_check.txt
index 3c62da283d..90ac6482c5 100644
--- a/skip_title_check.txt
+++ b/skip_title_check.txt
@@ -9,3 +9,4 @@ docs/api-reference/v1/definitions.md
 docs/api-reference/v1/operations.md
 docs/user-guide/pods/_viewing-a-pod.md
 docs/user-guide/simple-yaml.md
+docs/concepts/abstractions/pod-termination.md
\ No newline at end of file

From cd49c123cdbd5df2c443e1c1b547cc37a511b30a Mon Sep 17 00:00:00 2001
From: Peter Lee 
Date: Wed, 18 Jan 2017 11:37:46 +0800
Subject: [PATCH 053/132] fix broken links

fix some broken links in /docs/getting-started-guides/mesos/
---
 docs/getting-started-guides/mesos/index.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/getting-started-guides/mesos/index.md b/docs/getting-started-guides/mesos/index.md
index 499ff0ba51..b30482a9a1 100644
--- a/docs/getting-started-guides/mesos/index.md
+++ b/docs/getting-started-guides/mesos/index.md
@@ -11,7 +11,7 @@ title: Kubernetes on Mesos
 
 
 
-Mesos allows dynamic sharing of cluster resources between Kubernetes and other first-class Mesos frameworks such as [Hadoop][1], [Spark][2], and [Chronos][3].
+Mesos allows dynamic sharing of cluster resources between Kubernetes and other first-class Mesos frameworks such as [HDFS][1], [Spark][2], and [Chronos][3].
 Mesos also ensures applications from different frameworks running on your cluster are isolated and that resources are allocated fairly among them.
 
 Mesos clusters can be deployed on nearly every IaaS cloud provider infrastructure or in your own physical datacenter. Kubernetes on Mesos runs on-top of that and therefore allows you to easily move Kubernetes workloads from one of these environments to the other.
@@ -325,16 +325,16 @@ Future work will add instructions to this guide to enable support for Kubernetes
 
 **NOTE:** Please be aware that there are [known issues with the current Kubernetes-Mesos implementation][7].
 
-[1]: http://mesosphere.com/docs/tutorials/run-hadoop-on-mesos-using-installer
-[2]: http://mesosphere.com/docs/tutorials/run-spark-on-mesos
-[3]: http://mesosphere.com/docs/tutorials/run-chronos-on-mesos
+[1]: https://docs.mesosphere.com/latest/usage/service-guides/hdfs/
+[2]: https://docs.mesosphere.com/latest/usage/service-guides/spark/
+[3]: https://docs.mesosphere.com/latest/usage/service-guides/chronos/
 [4]: https://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/README.md
-[5]: http://open.mesosphere.com/getting-started/cloud/google/mesosphere/
+[5]: https://dcos.io/docs/latest/administration/installing/cloud/gce/
 [6]: http://mesos.apache.org/
-[7]: https://releases.k8s.io/{{page.githubbranch}}/contrib/mesos/docs/issues.md
+[7]: https://github.com/kubernetes-incubator/kube-mesos-framework/blob/master/docs/issues.md
 [8]: https://github.com/mesosphere/kubernetes-mesos/issues
 [9]: https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples
 [10]: http://open.mesosphere.com/getting-started/cloud/google/mesosphere/#vpn-setup
 [11]: https://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/skydns-rc.yaml.in
 [12]: https://releases.k8s.io/{{page.githubbranch}}/cluster/addons/dns/skydns-svc.yaml.in
-[13]: https://releases.k8s.io/{{page.githubbranch}}/contrib/mesos/README.md
+[13]: https://github.com/kubernetes-incubator/kube-mesos-framework/blob/master/README.md

From 58dc06f510114432ec3bedf397b61240f838c4b6 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:09:52 -0800
Subject: [PATCH 054/132] Fixed bug in TOC file; added pod-termination to
 skip_toc_check.

---
 _data/concepts.yml | 2 +-
 skip_toc_check.txt | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/_data/concepts.yml b/_data/concepts.yml
index 69c3bed524..a91c1b86d6 100644
--- a/_data/concepts.yml
+++ b/_data/concepts.yml
@@ -6,7 +6,7 @@ section:
 - title: Kubernetes Objects
   section:
   - docs/concepts/abstractions/overview.md
-  - docs/concepts/pod.md
+  - docs/concepts/abstractions/pod.md
   - title: Controllers
     section:
     - docs/concepts/abstractions/controllers/statefulsets.md
diff --git a/skip_toc_check.txt b/skip_toc_check.txt
index 00d5a5bdec..255bb26d10 100644
--- a/skip_toc_check.txt
+++ b/skip_toc_check.txt
@@ -8,3 +8,4 @@ docs/user-guide/walkthrough/k8s201.md
 docs/user-guide/logging-demo/README.md
 docs/user-guide/downward-api/README.md
 docs/user-guide/configmap/README.md
+docs/concepts/abstractions/pod-termination.md
\ No newline at end of file

From 2a5394ae7e13fd7add246613fd337e3922a9feb7 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:15:31 -0800
Subject: [PATCH 055/132] Added sample .yaml file to concepts directory.

---
 docs/concepts/abstractions/nginx-deployment.yaml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 docs/concepts/abstractions/nginx-deployment.yaml

diff --git a/docs/concepts/abstractions/nginx-deployment.yaml b/docs/concepts/abstractions/nginx-deployment.yaml
new file mode 100644
index 0000000000..7a0dd431ef
--- /dev/null
+++ b/docs/concepts/abstractions/nginx-deployment.yaml
@@ -0,0 +1,16 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: nginx-deployment
+spec:
+  replicas: 3
+  template:
+    metadata:
+      labels:
+        app: nginx
+    spec:
+      containers:
+      - name: nginx
+        image: nginx:1.7.9
+        ports:
+        - containerPort: 80

From 65de831b9c7fa0de67a4fab70692bfa548d32d24 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:16:33 -0800
Subject: [PATCH 056/132] Fixed bug in line to include sample deployment yaml.

---
 docs/concepts/abstractions/overview.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md
index 2acadcafa5..74d223361d 100644
--- a/docs/concepts/abstractions/overview.md
+++ b/docs/concepts/abstractions/overview.md
@@ -33,7 +33,7 @@ When you create an object in Kubernetes, you must provide the object spec that d
 
 Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes Deployment:
 
-{% include code.html language="yaml" file="/docs/user-guide/nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %}
+{% include code.html language="yaml" file="nginx-deployment.yaml" ghlink="/docs/concepts/abstractions/nginx-deployment.yaml" %}
 
 One way to create a Deployment using a `.yaml` file like the one above is to use the []`kubectl create`]() command in the `kubectl` command-line interface, passing the `.yaml` file as an argument. Here's an example:
 

From 34d349d7b870d261357f3b87eb557c0e2e772688 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:23:41 -0800
Subject: [PATCH 057/132] More bug fixes for TOC, titling, and formatting.

---
 _data/concepts.yml     | 12 ++++++------
 docs/concepts/index.md |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/_data/concepts.yml b/_data/concepts.yml
index a91c1b86d6..bd1b5d7f7e 100644
--- a/_data/concepts.yml
+++ b/_data/concepts.yml
@@ -2,14 +2,14 @@ bigheader: "Concepts"
 abstract: "Detailed explanations of Kubernetes system concepts and abstractions."
 toc:
 - docs/concepts/index.md
-section:
-- title: Kubernetes Objects
   section:
-  - docs/concepts/abstractions/overview.md
-  - docs/concepts/abstractions/pod.md
-  - title: Controllers
+  - title: Kubernetes Objects
     section:
-    - docs/concepts/abstractions/controllers/statefulsets.md
+    - docs/concepts/abstractions/overview.md
+    - docs/concepts/abstractions/pod.md
+    - title: Controllers
+      section:
+      - docs/concepts/abstractions/controllers/statefulsets.md
 
 - title: Object Metadata
   section:
diff --git a/docs/concepts/index.md b/docs/concepts/index.md
index 9ae7b9134b..bbe2c9844c 100644
--- a/docs/concepts/index.md
+++ b/docs/concepts/index.md
@@ -30,7 +30,7 @@ In addition, Kubernetes contains a number of higher-level abstractions called Co
 
 * ReplicaSet
 * Deployment
-* [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets/))
+* [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets/)
 * DaemonSet
 * Job
 

From e84e00467012af3072d472bd640fbf5b1a62454a Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:25:41 -0800
Subject: [PATCH 058/132] TOC fix.

---
 _data/concepts.yml | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/_data/concepts.yml b/_data/concepts.yml
index bd1b5d7f7e..41aefaaedf 100644
--- a/_data/concepts.yml
+++ b/_data/concepts.yml
@@ -3,13 +3,11 @@ abstract: "Detailed explanations of Kubernetes system concepts and abstractions.
 toc:
 - docs/concepts/index.md
   section:
-  - title: Kubernetes Objects
+  - docs/concepts/abstractions/overview.md
+  - docs/concepts/abstractions/pod.md
+  - title: Controllers
     section:
-    - docs/concepts/abstractions/overview.md
-    - docs/concepts/abstractions/pod.md
-    - title: Controllers
-      section:
-      - docs/concepts/abstractions/controllers/statefulsets.md
+    - docs/concepts/abstractions/controllers/statefulsets.md
 
 - title: Object Metadata
   section:

From 16917fc25868031cd8a4a828eff33f9800dea9d6 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:27:43 -0800
Subject: [PATCH 059/132] TOC fix, redux.

---
 _data/concepts.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/_data/concepts.yml b/_data/concepts.yml
index 41aefaaedf..4102b5f142 100644
--- a/_data/concepts.yml
+++ b/_data/concepts.yml
@@ -2,6 +2,8 @@ bigheader: "Concepts"
 abstract: "Detailed explanations of Kubernetes system concepts and abstractions."
 toc:
 - docs/concepts/index.md
+
+- title: Kubernetes Objects
   section:
   - docs/concepts/abstractions/overview.md
   - docs/concepts/abstractions/pod.md

From 7d7074801bec0db56158d67adc63577cd7289914 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:34:27 -0800
Subject: [PATCH 060/132] Attempted fix of Pod page template.

---
 docs/concepts/abstractions/pod.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index 70c865b490..022e51ceaf 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -10,6 +10,7 @@ This page provides an overview of `Pod`, the smallest deployable object in the K
 {:toc}
 
 {% capture body %}
+### Understanding Pods
 
 A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents a running process on your cluster.
 
@@ -71,11 +72,10 @@ In general, Controllers use a Pod Template that you provide to create the Pods f
 
 {% endcapture %}
 
+{% capture whatsnext %}
+* Learn more about Pod behavior:
+  * Pod Termination
+  * Other Pod Topics
+{% endcapture %}
 
-{% if whatsnext %}
-
-### What's next
-
-{{ whatsnext }}
-
-{% endif %}
\ No newline at end of file
+{% include templates/concept.md %}
\ No newline at end of file

From 90aab18a2a75d162fb7a4279abb774a437d0a553 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 14:43:18 -0800
Subject: [PATCH 061/132] Formatting fixes for Pod.

---
 docs/concepts/abstractions/pod.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index 022e51ceaf..ebef20584d 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -6,7 +6,6 @@ title: Pods
 This page provides an overview of `Pod`, the smallest deployable object in the Kubernetes object model.
 {% endcapture %}
 
-* TOC
 {:toc}
 
 {% capture body %}
@@ -58,7 +57,7 @@ You'll rarely create individual Pods directly in Kubernetes--even singleton Pods
 
 Pods do not, by themselves, self-heal. If a Pod is scheduled to a node that fails, or if the scheduling operation itself fails, the Pod is deleted; likewise, a Pod won't survive an eviction due to a lack of resources or node maintenance. Kubernetes uses a higher-level abstraction, called a *Controller*, that handles the work of managing the relatively disposable Pod instances. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a Controller. See [Pods and Controllers](#pods-and-controllers) for more information on how Kubernetes uses Controllers to implement Pod scaling and healing.
 
-####  Pods and Controllers
+#### Pods and Controllers
 
 A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope. For example, if a node fails, the Controller might automatically replace the Pod by scheduling an identical replacement on a different node). 
 

From 1d289b91934ac82460ecfbe44ecc9b4e57d86083 Mon Sep 17 00:00:00 2001
From: Devin Donnelly 
Date: Wed, 18 Jan 2017 15:21:02 -0800
Subject: [PATCH 062/132] Fixed wording in response to feedback from pwittrock.

---
 docs/concepts/abstractions/overview.md | 10 +++++-----
 docs/concepts/abstractions/pod.md      | 16 +++++++---------
 docs/concepts/index.md                 |  4 ++--
 3 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md
index 74d223361d..ffed154293 100644
--- a/docs/concepts/abstractions/overview.md
+++ b/docs/concepts/abstractions/overview.md
@@ -15,23 +15,23 @@ This page explains how Kubernetes objects are represented in the Kubernetes API,
 * The resources available to those applications
 * The policies around how those applications behave, such as restart policies, upgrades, and fault-tolerance
 
-When you create a Kubernetes object, you create a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure that that object exists. By creating an object, you're effectively telling the Kubernetes system what you want your cluster's workload to look like; this is your cluster's **desired state**.
+A Kubernetes object is a "record of intent"--once you create the object, the Kubernetes system will constantly work to ensure that that object exists. By creating an object, you're effectively telling the Kubernetes system what you want your cluster's workload to look like; this is your cluster's **desired state**.
 
-To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. Kubernetes currently provides a `golang` client library for this purpose, and other language libraries are being developed.
+To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. Kubernetes currently provides a `golang` [client library](https://github.com/kubernetes/client-go) for this purpose, and other language libraries (such as [Python](https://github.com/kubernetes-incubator/client-python)) are being developed.
 
 #### Object Spec and Status
 
 Every Kubernetes object includes two nested object fields that govern the object's configuration: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied and updated by the Kubernetes system. At any given time, the Kubernetes Control Plane actively manages an object's actual state to match the desired state you supplied.
 
-For example, a Kubernetes Deployment is an object that can represent an application running on your cluster. When you create the Deployment, you might set the Deployment spec to specify that you want three replicas of the application to be running. The Kubernetes system reads the Deployment spec and starts three instances of your desired application--updating the status to match your spec. If any of those instances should fail (a status change), the Kubernetes system reacts to the difference between spec and status by making a correction--in this case, starting a replacement instance.
+For example, a Kubernetes Deployment is an object that can represent an application running on your cluster. When you create the Deployment, you might set the Deployment spec to specify that you want three replicas of the application to be running. The Kubernetes system reads the Deployment spec and starts three instances of your desired application--updating the status to match your spec. If any of those instances should fail (a status change), the Kubernetes system responds to the difference between spec and status by making a correction--in this case, starting a replacement instance.
 
 For more information on the object spec, status, and metadata, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status).
 
 #### Describing a Kubernetes Object
 
-When you create an object in Kubernetes, you must provide the object spec that describes your desired state for it, as well as some basic information about the object (such as a name). When you use the Kubernetes API to create the object (either directly or via `kubectl`), that API call sends the information to the Kubernetes Master as JSON. **You can express that JSON using a `.yaml` file.**
+When you create an object in Kubernetes, you must provide the object spec that describes its desired state, as well as some basic information about the object (such as a name). When you use the Kubernetes API to create the object (either directly or via `kubectl`), that API request must include that information as JSON in the request body. **Most often, you provide the information to `kubectl` in a .yaml file.** `kubectl` converts the information to JSON when making the API request.
 
-Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes Deployment:
+Here's an example `.yaml` file that shows the required fields and object spec for a Kubernetes Deployment:
 
 {% include code.html language="yaml" file="nginx-deployment.yaml" ghlink="/docs/concepts/abstractions/nginx-deployment.yaml" %}
 
diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index ebef20584d..82d6407a8e 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -20,16 +20,14 @@ A Pod encapsulates an application container (or, in some cases, multiple contain
 Pods are employed a number of ways in a Kubernetes cluster, including:
 
 * **Pods that run a single container**. The "one-container-per-Pod" model is the most common Kubernetes use case; in this case, you can think of a Pod as a wrapper around a single container, and Kubernetes manages the Pods rather than the containers directly.
-* **Pods that run multiple containers that need to work together**. A Pod might encapsulate an application that relies on multiple co-located containers that are tightly coupled and need to share resources. These co-located containers might form a single cohesive unit of service--one container serving files from a shared volume to the public, while a separate "sidecar" container refreshes or updates those files. The Pod wraps these containers and storage resources together as a single managable entity.
+* **Pods that run multiple containers that need to work together**. A Pod might encapsulate an application composed multiple co-located containers that are tightly coupled and need to share resources. These co-located containers might form a single cohesive unit of service--one container serving files from a shared volume to the public, while a separate "sidecar" container refreshes or updates those files. The Pod wraps these containers and storage resources together as a single managable entity.
 
 The [Kubernetes Blog](http://blog.kubernetes.io) has some additional information on Pod use cases. For more information, see:
 
 * [The Distributed System Toolkit: Patterns for Composite Containers](http://blog.kubernetes.io/2015/06/the-distributed-system-toolkit-patterns.html)
 * [Container Design Patterns](http://blog.kubernetes.io/2016/06/container-design-patterns.html)
 
-Each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, such Pods are usually managed by a Controller. See [Pods and Controllers](#pods-and-controllers) for more information.
-
-> Note: Restarting a container in a Pod should not be confused with _restarting_ the Pod itself.  The Pod itself does not run, but is an environment the containers run in and persists until it is deleted.
+Each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, this is generally referred to as _replication_. Replicated Pods are usually created and managed as a group by an abstraction called a Controller. See [Pods and Controllers](#pods-and-controllers) for more information.
 
 #### How Pods Manage Multiple Containers
 
@@ -43,23 +41,23 @@ Pods provide two kinds of shared resources for their constituent containers: *ne
 
 ##### Networking
 
-Each Pod is assigned a unique IP address. Every the container in a pod shares the network namespace, including the IP address and network ports. Containers *inside a Pod* can communicate with one another using `localhost`. When containers in a Pod communicate with entities *outside the Pod*, they must coordinate how they use the shared network resources (such as ports).
+Each Pod is assigned a unique IP address. Every the container in a Pod shares the network namespace, including the IP address and network ports. Containers *inside a Pod* can communicate with one another using `localhost`. When containers in a Pod communicate with entities *outside the Pod*, they must coordinate how they use the shared network resources (such as ports).
 
 ##### Storage
 
-A Pod can specify a set of shared storage *volumes*. All containers in the pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a pod to survive in case one of the containers within needs to be restarted. See Volumes for more information on how Kubernetes implements shared storage in a Pod.
+A Pod can specify a set of shared storage *volumes*. All containers in the Pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a Pod to survive in case one of the containers within needs to be restarted. See Volumes for more information on how Kubernetes implements shared storage in a Pod.
 
 ### Working with Pods
 
-You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a node in your your cluster. The Pod remains on that node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources.
+You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a Node in your your cluster. The Pod remains on that Node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources, or the Node fails.
 
 > Note: Restarting a container in a Pod should not be confused with restarting the Pod. The Pod itself does not run, but is an environment the containers run in and persists until it is deleted.
 
-Pods do not, by themselves, self-heal. If a Pod is scheduled to a node that fails, or if the scheduling operation itself fails, the Pod is deleted; likewise, a Pod won't survive an eviction due to a lack of resources or node maintenance. Kubernetes uses a higher-level abstraction, called a *Controller*, that handles the work of managing the relatively disposable Pod instances. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a Controller. See [Pods and Controllers](#pods-and-controllers) for more information on how Kubernetes uses Controllers to implement Pod scaling and healing.
+Pods do not, by themselves, self-heal. If a Pod is scheduled to a Node that fails, or if the scheduling operation itself fails, the Pod is deleted; likewise, a Pod won't survive an eviction due to a lack of resources or Node maintenance. Kubernetes uses a higher-level abstraction, called a *Controller*, that handles the work of managing the relatively disposable Pod instances. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a Controller. See [Pods and Controllers](#pods-and-controllers) for more information on how Kubernetes uses Controllers to implement Pod scaling and healing.
 
 #### Pods and Controllers
 
-A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope. For example, if a node fails, the Controller might automatically replace the Pod by scheduling an identical replacement on a different node). 
+A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope. For example, if a Node fails, the Controller might automatically replace the Pod by scheduling an identical replacement on a different Node). 
 
 Some examples of Controllers that contain one or more pods include:
 
diff --git a/docs/concepts/index.md b/docs/concepts/index.md
index bbe2c9844c..3f131c6358 100644
--- a/docs/concepts/index.md
+++ b/docs/concepts/index.md
@@ -36,9 +36,9 @@ In addition, Kubernetes contains a number of higher-level abstractions called Co
 
 ## Kubernetes Control Plane
 
-The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. The Control Plane maintains a record of all of the Kubernetes Objects in the system, and runs continuous control loops to manage those objects' state. At any given time, the Control Plane's control loops will attempt to match the actual state of all the objects in the system to the desired state that you provided when you created those objects.
+The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. The Control Plane maintains a record of all of the Kubernetes Objects in the system, and runs continuous control loops to manage those objects' state. At any given time, the Control Plane's control loops will respond to changes in the cluster and work to make the actual state of all the objects in the system to the desired state that you provided.
 
-For example, When you use the Kubernetes API to create a Deployment object, for example, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state.
+For example, when you use the Kubernetes API to create a Deployment object, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state.
 
 ### Kubernetes Master
 

From ee02a66f1257b499c823306434d3a3848b112083 Mon Sep 17 00:00:00 2001
From: steveperry-53 
Date: Wed, 18 Jan 2017 12:55:46 -0800
Subject: [PATCH 063/132] Remove 3 User Guide topics, redirect to Tasks.

---
 _data/guides.yml                          |   3 -
 docs/tasks/index.md                       |   6 +
 docs/user-guide/configuring-containers.md | 162 ----------------------
 docs/user-guide/pods/single-container.md  |  94 -------------
 docs/user-guide/simple-nginx.md           |  61 --------
 5 files changed, 6 insertions(+), 320 deletions(-)
 delete mode 100644 docs/user-guide/configuring-containers.md
 delete mode 100644 docs/user-guide/pods/single-container.md
 delete mode 100644 docs/user-guide/simple-nginx.md

diff --git a/_data/guides.yml b/_data/guides.yml
index c1bdd99a4e..fdade5b1ec 100644
--- a/_data/guides.yml
+++ b/_data/guides.yml
@@ -65,11 +65,8 @@ toc:
 
 - title: Containers and Pods
   section:
-  - docs/user-guide/simple-nginx.md
-  - docs/user-guide/pods/single-container.md
   - docs/user-guide/pods/multi-container.md
   - docs/user-guide/pods/init-container.md
-  - docs/user-guide/configuring-containers.md
   - docs/user-guide/pod-templates.md
   - docs/user-guide/containers.md
   - docs/user-guide/environment-guide/index.md
diff --git a/docs/tasks/index.md b/docs/tasks/index.md
index 544036b749..c16a22af7f 100644
--- a/docs/tasks/index.md
+++ b/docs/tasks/index.md
@@ -3,6 +3,12 @@ title: Tasks
 redirect_from:
 - "/docs/user-guide/production-pods/"
 - "/docs/user-guide/production-pods.html"
+- "/docs/user-guide/simple-nginx/"
+- "/docs/user-guide/simple-nginx.html"
+- "/docs/user-guide/pods/single-container/"
+- "/docs/user-guide/pods/single-container.html"
+- "/docs/user-guide/configuring-containers/"
+- "/docs/user-guide/configuring-containers.html"
 ---
 
 This section of the Kubernetes documentation contains pages that
diff --git a/docs/user-guide/configuring-containers.md b/docs/user-guide/configuring-containers.md
deleted file mode 100644
index 51ac150f07..0000000000
--- a/docs/user-guide/configuring-containers.md
+++ /dev/null
@@ -1,162 +0,0 @@
----
-assignees:
-- caesarxuchao
-- thockin
-title: Configuring Containers
----
-
-* TOC
-{:toc}
-
-## Configuration in Kubernetes
-
-In addition to the imperative-style commands, such as `kubectl run` and `kubectl expose`, described [elsewhere](/docs/user-guide/quick-start), Kubernetes supports declarative configuration. Oftentimes, configuration files are preferable to imperative commands, since they can be checked into version control and changes to the files can be code reviewed, which is especially important for more complex configurations, producing a more robust, reliable and archival system.
-
-In the declarative style, all configuration is stored in YAML or JSON configuration files using Kubernetes's API resource schemas as the configuration schemas. `kubectl` can create, update, delete, and get API resources. The `apiVersion` (currently `v1`?), resource `kind`, and resource `name` are used by `kubectl` to construct the appropriate API path to invoke for the specified operation.
-
-## Launching a container using a configuration file
-
-Kubernetes executes containers in [*Pods*](/docs/user-guide/pods). A pod containing a simple Hello World container can be specified in YAML as follows:
-
-```yaml
-apiVersion: v1
-kind: Pod
-metadata:
-  name: hello-world
-spec:  # specification of the pod's contents
-  restartPolicy: Never
-  containers:
-  - name: hello
-    image: "ubuntu:14.04"
-    command: ["/bin/echo", "hello", "world"]
-```
-
-The value of `metadata.name`, `hello-world`, will be the name of the pod resource created, and must be unique within the cluster, whereas `containers[0].name` is just a nickname for the container within that pod. `image` is the name of the Docker image, which Kubernetes expects to be able to pull from a registry, the [Docker Hub](https://registry.hub.docker.com/) by default.
-
-`restartPolicy: Never` indicates that we just want to run the container once and then terminate the pod.
-
-The [`command`](/docs/user-guide/containers/#containers-and-commands) overrides the Docker container's `Entrypoint`. Command arguments (corresponding to Docker's `Cmd`) may be specified using `args`, as follows:
-
-```yaml
-    command: ["/bin/echo"]
-    args: ["hello","world"]
-```
-
-This pod can be created using the `create` command:
-
-```shell
-$ kubectl create -f ./hello-world.yaml
-pods/hello-world
-```
-
-`kubectl` prints the resource type and name of the resource created when successful.
-
-## Validating configuration
-
-We enable validation by default in `kubectl` since v1.1.
-
-Let's say you specified `entrypoint` instead of `command`. You'd see output as follows:
-
-```shell
-error validating "./hello-world.yaml": error validating data: found invalid field Entrypoint for v1.Container; if you choose to ignore these errors, turn validation off with --validate=false
-```
-
-Using `kubectl create --validate=false` to turn validation off, it creates the resource anyway, unless a required field is absent or a field value is invalid. Unknown API fields are ignored, so be careful. This pod was created, but with no `command`, which is an optional field, since the image may specify an `Entrypoint`.
-View the [Pod API
-object](/docs/api-reference/v1/definitions/#_v1_pod)
-to see the list of valid fields.
-
-## Environment variables and variable expansion
-
-Kubernetes [does not automatically run commands in a shell](https://github.com/kubernetes/kubernetes/wiki/User-FAQ#use-of-environment-variables-on-the-command-line) (not all images contain shells). If you would like to run your command in a shell, such as to expand environment variables (specified using `env`), you could do the following:
-
-```yaml
-apiVersion: v1
-kind: Pod
-metadata:
-  name: hello-world
-spec:  # specification of the pod's contents
-  restartPolicy: Never
-  containers:
-  - name: hello
-    image: "ubuntu:14.04"
-    env:
-    - name: MESSAGE
-      value: "hello world"
-    command: ["/bin/sh","-c"]
-    args: ["/bin/echo \"${MESSAGE}\""]
-```
-
-However, a shell isn't necessary just to expand environment variables. Kubernetes will do it for you if you use [`$(ENVVAR)` syntax](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/expansion.md):
-
-```yaml
-    command: ["/bin/echo"]
-    args: ["$(MESSAGE)"]
-```
-
-## Viewing pod status
-
-You can see the pod you created (actually all of your cluster's pods) using the `get` command.
-
-If you're quick, it will look as follows:
-
-```shell
-$ kubectl get pods
-NAME          READY     STATUS    RESTARTS   AGE
-hello-world   0/1       Pending   0          0s
-```
-
-Initially, a newly created pod is unscheduled -- no node has been selected to run it. Scheduling happens after creation, but is fast, so you normally shouldn't see pods in an unscheduled state unless there's a problem.
-
-After the pod has been scheduled, the image may need to be pulled to the node on which it was scheduled, if it hadn't been pulled already. After a few seconds, you should see the container running:
-
-```shell
-$ kubectl get pods
-NAME          READY     STATUS    RESTARTS   AGE
-hello-world   1/1       Running   0          5s
-```
-
-The `READY` column shows how many containers in the pod are running.
-
-Almost immediately after it starts running, this command will terminate. `kubectl` shows that the container is no longer running and displays the exit status:
-
-```shell
-$ kubectl get pods --show-all
-NAME          READY     STATUS       RESTARTS   AGE
-hello-world   0/1       ExitCode:0   0          15s
-```
-
-## Viewing pod output
-
-You probably want to see the output of the command you ran. As with [`docker logs`](https://docs.docker.com/engine/reference/commandline/logs/), `kubectl logs` will show you the output:
-
-```shell
-$ kubectl logs hello-world
-hello world
-```
-
-## Deleting pods
-
-When you're done looking at the output, you should delete the pod:
-
-```shell
-$ kubectl delete pod hello-world
-pods/hello-world
-```
-
-As with `create`, `kubectl` prints the resource type and name of the resource deleted when successful.
-
-You can also use the resource/name format to specify the pod:
-
-```shell
-$ kubectl delete pods/hello-world
-pods/hello-world
-```
-
-Terminated pods aren't currently automatically deleted, so that you can observe their final status, so be sure to clean up your dead pods.
-
-On the other hand, containers and their logs are eventually deleted automatically in order to free up disk space on the nodes.
-
-## What's next?
-
-[Learn about deploying continuously running applications.](/docs/user-guide/deploying-applications)
diff --git a/docs/user-guide/pods/single-container.md b/docs/user-guide/pods/single-container.md
deleted file mode 100644
index 4fef42a2f9..0000000000
--- a/docs/user-guide/pods/single-container.md
+++ /dev/null
@@ -1,94 +0,0 @@
----
-assignees:
-- janetkuo
-title: Creating Single-Container Pods
----
-
-* TOC
-{:toc}
-
-A pod is a group of containers that are scheduled
-onto the same host. Pods serve as units of scheduling, deployment, and
-horizontal scaling/replication. Pods share fate, and share some resources, such
-as storage volumes and IP addresses.
-
-## Creating a pod
-
-Single-container pods can be created with the `run` command. The
-pod's properties are specified with flags on the command line.
-
-The `run` command creates a Deployment to monitor the pod(s).
-The Deployment watches for failed pods and will start up new pods as required
-to maintain the specified number.
-
-Note: If you don't want a Deployment to monitor your pod (e.g. your pod
-is writing non-persistent data which won't survive a restart, or your pod is
-intended to be very short-lived), you can
-[create a pod directly with the `create` command](/docs/user-guide/pods/multi-container/).
-
-To create a pod using the `run` command:
-
-```shell
-$ kubectl run NAME
-    --image=image
-    [--port=port]
-    [--replicas=replicas]
-    [--labels=key=value,key=value,...]
-```
-
-Where:
-
-* `kubectl run` creates a Deployment named "nginx" on Kubernetes cluster >= v1.2. If you are running older versions, it creates replication controllers instead. If you want to obtain the old behavior, use `--generator=run/v1` to create replication controllers. See [`kubectl run`](/docs/user-guide/kubectl/kubectl_run/) for more details. 
-* `NAME` (required) is the name of the container to create. This value is also
-  applied as the name of the Deployment, and as the prefix of the
-  pod name. For example:
-  
-  ```shell 
-  $ kubectl run example --image=nginx
-  deployment "example" created
-
-  $ kubectl get pods -l run=example
-  NAME                       READY     STATUS    RESTARTS   AGE
-  example-1934187764-scau1   1/1       Running   0          13s
-  ```
-* `--image=IMAGE` (required) is the Docker container image to use for this
-   container.
-* `--port=PORT` is the port to expose on the container.
-* `--replicas=NUM` is the number of replicated pods to create. If not specified,
-  one pod will be created.
-* `--labels=key=value` specifies one or more labels to attach to the pod. In
-  addition to any labels specified here, `run` attaches a label of
-  the format `run=NAME`. This is used by the Deployment
-  to target the pods created by the command.
-  
-![image](/images/docs/pods/single-container_1.svg)  
-
-There are additional flags that can be specified. For a complete list, run:
-
-    $ kubectl run --help
-
-## Viewing a pod
-
-{% include_relative _viewing-a-pod.md %}
-
-## Deleting a pod
-
-If your pod was created using the `run` command, Kubernetes creates a
-[Deployment](/docs/user-guide/deployments/)
-to manage the pod. Pods managed by a Deployment are rescheduled if
-they go away, including being deleted by `kubectl delete pod`. To permanently
-delete the pod, delete its Deployment.
-
-First, find the Deployment's name:
-
-```shell
-$ kubectl get deployment 
-NAME      DESIRED   CURRENT   UP-TO-DATE   AVAILABLE   AGE
-example   1         1         1            1           1m
-```
-
-Then, `delete` the Deployment:
-
-```shell
-$ kubectl delete deployment DEPLOYMENT_NAME
-```
diff --git a/docs/user-guide/simple-nginx.md b/docs/user-guide/simple-nginx.md
deleted file mode 100644
index 83011310a5..0000000000
--- a/docs/user-guide/simple-nginx.md
+++ /dev/null
@@ -1,61 +0,0 @@
----
-assignees:
-- mikedanese
-title: Running Your First Containers
----
-
-Ok, you've run one of the [getting started guides](/docs/getting-started-guides/) and you have
-successfully turned up a Kubernetes cluster.  Now what?  This guide will help you get oriented
-to Kubernetes and running your first containers on the cluster.
-
-### Running a container (simple version)
-
-From this point onwards, it is assumed that `kubectl` is on your path from one of the getting started guides.
-
-The [`kubectl run`](/docs/user-guide/kubectl/kubectl_run) line below will create a [`Deployment`](/docs/user-guide/deployments) named `my-nginx`, and 
-two [nginx](https://registry.hub.docker.com/_/nginx/) [pods](/docs/user-guide/pods) listening on port 80. The `Deployment` will ensure that there are 
-always exactly two pods running as specified in its spec. 
-
-```shell
-kubectl run my-nginx --image=nginx --replicas=2 --port=80
-```
-
-Once the pods are created, you can list them to see what is up and running:
-
-```shell
-kubectl get pods
-```
-
-You can also see the Deployment that was created:
-
-```shell
-kubectl get deployments
-```
-
-To stop the two replicated containers, delete the Deployment:
-
-```shell
-kubectl delete deployment my-nginx
-```
-
-### Exposing your pods to the internet.
-
-On some platforms (for example Google Compute Engine) the kubectl command can integrate with your cloud provider to add a [public IP address](/docs/user-guide/services/#external-services) for the pods,
-to do this run:
-
-```shell
-kubectl expose deployment my-nginx --port=80 --type=LoadBalancer
-```
-
-This should print the service that has been created, and map an external IP address to the service. Where to find this external IP address will depend on the environment you run in.  For instance, for Google Compute Engine the external IP address is listed as part of the newly created service and can be retrieved by running
-
-```shell
-kubectl get services
-```
-
-In order to access your nginx landing page, you also have to make sure that traffic from external IPs is allowed. Do this by opening a firewall to allow traffic on port 80.
-
-### Next: Configuration files
-
-Most people will eventually want to use declarative configuration files for creating/modifying their applications.  A [simplified introduction](/docs/user-guide/deploying-applications/)
-is given in a different document.

From 9797dee77c9b37868dc4885a0b5522b7ede3ce27 Mon Sep 17 00:00:00 2001
From: Jared 
Date: Wed, 18 Jan 2017 16:38:37 -0800
Subject: [PATCH 064/132] Fixed dead link

Fixed dead link to drivers
---
 docs/getting-started-guides/minikube.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md
index 7e47aeadd6..d033f3c48e 100644
--- a/docs/getting-started-guides/minikube.md
+++ b/docs/getting-started-guides/minikube.md
@@ -57,8 +57,8 @@ the following drivers:
 
 * virtualbox
 * vmwarefusion
-* kvm ([driver installation](./DRIVERS.md#kvm-driver))
-* xhyve ([driver installation](./DRIVERS.md#xhyve-driver))
+* kvm ([driver installation](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md#kvm-driver))
+* xhyve ([driver installation](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md#xhyve-driver))
 
 Note that the IP below is dynamic and can change. It can be retrieved with `minikube ip`.
 

From 0f6b9927719322bc20c55132d9b2bd163780d37f Mon Sep 17 00:00:00 2001
From: Jared 
Date: Wed, 18 Jan 2017 16:50:49 -0800
Subject: [PATCH 065/132] fixed all relative links

Addresses issue: https://github.com/kubernetes/kubernetes.github.io/issues/1944
---
 docs/getting-started-guides/minikube.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md
index d033f3c48e..a6fc28bfb0 100644
--- a/docs/getting-started-guides/minikube.md
+++ b/docs/getting-started-guides/minikube.md
@@ -27,7 +27,7 @@ Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a
 ### Requirements
 
 * OS X
-    * [xhyve driver](./DRIVERS.md#xhyve-driver), [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [VMware Fusion](https://www.vmware.com/products/fusion) installation
+    * [xhyve driver](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md#xhyve-driver), [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [VMware Fusion](https://www.vmware.com/products/fusion) installation
 * Linux
     * [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [KVM](http://www.linux-kvm.org/) installation,
 * VT-x/AMD-v virtualization must be enabled in BIOS
@@ -111,7 +111,7 @@ This will use an alternative minikube ISO image containing both rkt, and Docker,
 
 ### Driver plugins
 
-See [DRIVERS](./DRIVERS.md) for details on supported drivers and how to install
+See [DRIVERS](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md) for details on supported drivers and how to install
 plugins, if required.
 
 ### Reusing the Docker daemon
@@ -150,7 +150,7 @@ Remember to turn off the imagePullPolicy:Always, as otherwise Kubernetes won't u
 
 ### Starting a Cluster
 
-The [minikube start](./docs/minikube_start.md) command can be used to start your cluster.
+The [minikube start](https://github.com/kubernetes/minikube/blob/master/docs/minikube_start.md) command can be used to start your cluster.
 This command creates and configures a virtual machine that runs a single-node Kubernetes cluster.
 This command also configures your [kubectl](http://kubernetes.io/docs/user-guide/kubectl-overview/) installation to communicate with this cluster.
 
@@ -194,12 +194,12 @@ This feature also supports nested structs. To change the `LeaderElection.LeaderE
 To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.AuthorizationMode=RBAC`. 
 
 ### Stopping a Cluster
-The [minikube stop](./docs/minikube_stop.md) command can be used to stop your cluster.
+The [minikube stop](https://github.com/kubernetes/minikube/blob/master/docs/minikube_stop.md) command can be used to stop your cluster.
 This command shuts down the minikube virtual machine, but preserves all cluster state and data.
 Starting the cluster again will restore it to it's previous state.
 
 ### Deleting a Cluster
-The [minikube delete](./docs/minikube_delete.md) command can be used to delete your cluster.
+The [minikube delete](https://github.com/kubernetes/minikube/blob/master/docs/minikube_delete.md) command can be used to delete your cluster.
 This command shuts down and deletes the minikube virtual machine. No data or state is preserved.
 
 ## Interacting With your Cluster
@@ -288,7 +288,7 @@ In order to have minikube properly start/restart custom addons, place the addon(
 
 ## Documentation
 
-For a list of minikube's available commands see the [full CLI docs](./docs/minikube.md).
+For a list of minikube's available commands see the [full CLI docs](https://github.com/kubernetes/minikube/blob/master/docs/minikube.md).
 
 ## Using Minikube with an HTTP Proxy
 

From 02d17ade5fd1205151d0c01e1c40e0e156388892 Mon Sep 17 00:00:00 2001
From: steveperry-53 
Date: Wed, 18 Jan 2017 10:18:37 -0800
Subject: [PATCH 066/132] Reduce heading levels by 1.

---
 _includes/templates/concept.md                |  2 +-
 _includes/templates/task.md                   |  4 +--
 _includes/templates/tutorial.md               |  8 ++---
 .../abstractions/controllers/statefulsets.md  | 16 +++++-----
 docs/concepts/abstractions/overview.md        | 10 +++----
 docs/concepts/abstractions/pod.md             | 14 ++++-----
 docs/concepts/object-metadata/annotations.md  |  2 +-
 ...load-balance-access-application-cluster.md | 13 ++------
 ...port-forward-access-application-cluster.md |  6 ++--
 .../http-proxy-access-api.md                  |  4 +--
 .../administer-cluster/assign-pods-nodes.md   |  4 +--
 .../change-pv-reclaim-policy.md               |  6 ++--
 .../dns-horizontal-autoscaling.md             | 22 +++++++-------
 .../administer-cluster/safely-drain-node.md   |  4 +--
 .../assign-cpu-ram-container.md               |  6 ++--
 .../attach-handler-lifecycle-event.md         |  6 ++--
 .../communicate-containers-same-pod.md        |  4 +--
 .../configure-liveness-readiness-probes.md    | 12 ++++----
 .../configure-pod-initialization.md           |  2 +-
 .../configure-volume-storage.md               |  2 +-
 .../define-command-argument-container.md      |  6 ++--
 .../define-environment-variable-container.md  |  2 +-
 .../distribute-credentials-secure.md          | 10 +++----
 .../pull-image-private-registry.md            |  8 ++---
 .../determine-reason-pod-failure.md           |  4 +--
 .../debugging-a-statefulset.md                |  4 +--
 docs/tasks/manage-stateful-set/delete-pods.md |  6 ++--
 .../deleting-a-statefulset.md                 |  8 ++---
 .../manage-stateful-set/scale-stateful-set.md | 10 +++----
 .../upgrade-pet-set-to-stateful-set.md        | 18 +++++------
 .../troubleshoot/debug-init-containers.md     |  8 ++---
 docs/tutorials/services/source-ip.md          | 10 +++----
 .../basic-stateful-set.md                     | 28 ++++++++---------
 .../run-replicated-stateful-application.md    | 28 ++++++++---------
 .../run-stateful-application.md               | 10 +++----
 .../stateful-application/zookeeper.md         | 30 +++++++++----------
 .../expose-external-ip-address-service.md     |  4 +--
 .../expose-external-ip-address.md             |  2 +-
 .../stateless-application/hello-minikube.md   | 14 ++++-----
 .../run-stateless-application-deployment.md   |  8 ++---
 40 files changed, 178 insertions(+), 187 deletions(-)

diff --git a/_includes/templates/concept.md b/_includes/templates/concept.md
index dc6efdad13..65edc7f808 100644
--- a/_includes/templates/concept.md
+++ b/_includes/templates/concept.md
@@ -24,7 +24,7 @@
 
 {% if whatsnext %}
 
-### What's next
+## What's next
 
 {{ whatsnext }}
 
diff --git a/_includes/templates/task.md b/_includes/templates/task.md
index d74ff3b97a..e76cb7b117 100644
--- a/_includes/templates/task.md
+++ b/_includes/templates/task.md
@@ -15,7 +15,7 @@
 
 {% if prerequisites %}
 
-### Before you begin
+## Before you begin
 
 {{ prerequisites }}
 
@@ -48,7 +48,7 @@
 
 {% if whatsnext %}
 
-### What's next
+## What's next
 
 {{ whatsnext }}
 
diff --git a/_includes/templates/tutorial.md b/_includes/templates/tutorial.md
index 9c2d680643..b4c1faa0f1 100644
--- a/_includes/templates/tutorial.md
+++ b/_includes/templates/tutorial.md
@@ -15,7 +15,7 @@
 
 {% if objectives %}
 
-### Objectives
+## Objectives
 
 {{ objectives }}
 
@@ -28,7 +28,7 @@
 
 {% if prerequisites %}
 
-### Before you begin
+## Before you begin
 
 {{ prerequisites }}
 
@@ -52,7 +52,7 @@
 
 {% if cleanup %}
 
-### Cleaning up
+## Cleaning up
 
 {{ cleanup }}
 
@@ -61,7 +61,7 @@
 
 {% if whatsnext %}
 
-### What's next
+## What's next
 
 {{ whatsnext }}
 
diff --git a/docs/concepts/abstractions/controllers/statefulsets.md b/docs/concepts/abstractions/controllers/statefulsets.md
index 996a63fe8d..fb48e63ae0 100644
--- a/docs/concepts/abstractions/controllers/statefulsets.md
+++ b/docs/concepts/abstractions/controllers/statefulsets.md
@@ -22,7 +22,7 @@ guarantees about the ordering of deployment and scaling.
 
 {% capture body %}
 
-### Using StatefulSets
+## Using StatefulSets
 
 StatefulSets are valuable for applications that require one or more of the 
 following.
@@ -39,7 +39,7 @@ provides a set of stateless replicas. Controllers such as
 [Deployment](/docs/user-guide/deployments/) or 
 [ReplicaSet](/docs/user-guide/replicasets/) may be better suited to your stateless needs.
 
-### Limitations
+## Limitations
 * StatefulSet is a beta resource, not available in any Kubernetes release prior to 1.5.
 * As with all alpha/beta resources, you can disable StatefulSet through the `--runtime-config` option passed to the apiserver.
 * The storage for a given Pod must either be provisioned by a [PersistentVolume Provisioner](http://releases.k8s.io/{{page.githubbranch}}/examples/experimental/persistent-volume-provisioning/README.md) based on the requested `storage class`, or pre-provisioned by an admin.
@@ -47,7 +47,7 @@ provides a set of stateless replicas. Controllers such as
 * StatefulSets currently require a [Headless Service](/docs/user-guide/services/#headless-services) to be responsible for the network identity of the Pods. You are responsible for creating this Service.
 * Updating an existing StatefulSet is currently a manual process.
 
-### Components
+## Components
 The example below demonstrates the components of a StatefulSet. 
 
 * A Headless Service, named nginx, is used to control the network domain. 
@@ -103,17 +103,17 @@ spec:
           storage: 1Gi
 ```
 
-### Pod Identity
+## Pod Identity
 StatefulSet Pods have a unique identity that is comprised of an ordinal, a 
 stable network identity, and stable storage. The identity sticks to the Pod, 
 regardless of which node it's (re)scheduled on.
 
-__Ordinal Index__
+### Ordinal Index
 
 For a StatefulSet with N replicas, each Pod in the StatefulSet will be 
 assigned an integer ordinal, in the range [0,N), that is unique over the Set. 
 
-__Stable Network ID__
+### Stable Network ID
 
 Each Pod in a StatefulSet derives its hostname from the name of the StatefulSet 
 and the ordinal of the Pod. The pattern for the constructed hostname 
@@ -139,7 +139,7 @@ Cluster Domain | Service (ns/name) | StatefulSet (ns/name)  | StatefulSet Domain
 Note that Cluster Domain will be set to `cluster.local` unless 
 [otherwise configured](http://releases.k8s.io/{{page.githubbranch}}/build/kube-dns/README.md#how-do-i-configure-it).
 
-__Stable Storage__
+### Stable Storage
 
 Kubernetes creates one [PersistentVolume](/docs/user-guide/volumes/) for each 
 VolumeClaimTemplate. In the nginx example above, each Pod will receive a single PersistentVolume 
@@ -149,7 +149,7 @@ PersistentVolume Claims. Note that, the PersistentVolumes associated with the
 Pods' PersistentVolume Claims are not deleted when the Pods, or StatefulSet are deleted. 
 This must be done manually.
 
-### Deployment and Scaling Guarantee
+## Deployment and Scaling Guarantee
 
 * For a StatefulSet with N replicas, when Pods are being deployed, they are created sequentially, in order from {0..N-1}. 
 * When Pods are being deleted, they are terminated in reverse order, from {N-1..0}.
diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md
index ffed154293..dc2e8cf7ab 100644
--- a/docs/concepts/abstractions/overview.md
+++ b/docs/concepts/abstractions/overview.md
@@ -7,7 +7,7 @@ This page explains how Kubernetes objects are represented in the Kubernetes API,
 {% endcapture %}
 
 {% capture body %}
-### Understanding Kubernetes Objects
+## Understanding Kubernetes Objects
 
 *Kubernetes Objects* are persistent entities in the Kubernetes system. Kubenetes uses these entities to represent the state of your cluster. Specifically, they can describe:
 
@@ -19,7 +19,7 @@ A Kubernetes object is a "record of intent"--once you create the object, the Kub
 
 To work with Kubernetes objects--whether to create, modify, or delete them--you'll need to use the [Kubernetes API](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md). When you use the `kubectl` comamnd-line interface, for example, the CLI makes the necessary Kubernetes API calls for you; you can also use the Kubernetes API directly in your own programs. Kubernetes currently provides a `golang` [client library](https://github.com/kubernetes/client-go) for this purpose, and other language libraries (such as [Python](https://github.com/kubernetes-incubator/client-python)) are being developed.
 
-#### Object Spec and Status
+### Object Spec and Status
 
 Every Kubernetes object includes two nested object fields that govern the object's configuration: the object *spec* and the object *status*. The *spec*, which you must provide, describes your *desired state* for the object--the characteristics that you want the object to have. The *status* describes the *actual state* for the object, and is supplied and updated by the Kubernetes system. At any given time, the Kubernetes Control Plane actively manages an object's actual state to match the desired state you supplied.
 
@@ -27,7 +27,7 @@ For example, a Kubernetes Deployment is an object that can represent an applicat
 
 For more information on the object spec, status, and metadata, see the [Kubernetes API Conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/api-conventions.md#spec-and-status).
 
-#### Describing a Kubernetes Object
+### Describing a Kubernetes Object
 
 When you create an object in Kubernetes, you must provide the object spec that describes its desired state, as well as some basic information about the object (such as a name). When you use the Kubernetes API to create the object (either directly or via `kubectl`), that API request must include that information as JSON in the request body. **Most often, you provide the information to `kubectl` in a .yaml file.** `kubectl` converts the information to JSON when making the API request.
 
@@ -47,7 +47,7 @@ The output is similar to this:
 deployment "nginx-deployment" created
 ```
 
-#### Required Fields
+### Required Fields
 
 In the `.yaml` file for the Kubernetes object you want to create, you'll need to set values for the following fields:
 
@@ -63,4 +63,4 @@ You'll also need to provide the object `spec` field. The precise format of the o
 * Learn about the most important basic Kubernetes objects, such as [Pod](/docs/concepts/abstractions/pod/).
 {% endcapture %}
 
-{% include templates/concept.md %}
\ No newline at end of file
+{% include templates/concept.md %}
diff --git a/docs/concepts/abstractions/pod.md b/docs/concepts/abstractions/pod.md
index 82d6407a8e..33637168db 100644
--- a/docs/concepts/abstractions/pod.md
+++ b/docs/concepts/abstractions/pod.md
@@ -9,7 +9,7 @@ This page provides an overview of `Pod`, the smallest deployable object in the K
 {:toc}
 
 {% capture body %}
-### Understanding Pods
+## Understanding Pods
 
 A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents a running process on your cluster.
 
@@ -29,7 +29,7 @@ The [Kubernetes Blog](http://blog.kubernetes.io) has some additional information
 
 Each Pod is meant to run a single instance of a given application. If you want to scale your application horizontally (e.g., run muliple instances), you should use multiple Pods, one for each instance. In Kubernetes, this is generally referred to as _replication_. Replicated Pods are usually created and managed as a group by an abstraction called a Controller. See [Pods and Controllers](#pods-and-controllers) for more information.
 
-#### How Pods Manage Multiple Containers
+### How Pods Manage Multiple Containers
 
 Pods are designed to support multiple cooperating processes (as containers) that form a cohesive unit of service. The containers in a Pod are automatically co-located and co-scheduled on the same phyiscal or virtual machine in the cluster. The containers can share resources and dependencies, communicate with one another, and coordinate when and how they are terminated.
 
@@ -39,15 +39,15 @@ Note that grouping multiple co-located and co-managed containers in a single Pod
 
 Pods provide two kinds of shared resources for their constituent containers: *networking* and *storage*.
 
-##### Networking
+#### Networking
 
 Each Pod is assigned a unique IP address. Every the container in a Pod shares the network namespace, including the IP address and network ports. Containers *inside a Pod* can communicate with one another using `localhost`. When containers in a Pod communicate with entities *outside the Pod*, they must coordinate how they use the shared network resources (such as ports).
 
-##### Storage
+#### Storage
 
 A Pod can specify a set of shared storage *volumes*. All containers in the Pod can access the shared volumes, allowing those containers to share data. Volumes also allow persistent data in a Pod to survive in case one of the containers within needs to be restarted. See Volumes for more information on how Kubernetes implements shared storage in a Pod.
 
-### Working with Pods
+## Working with Pods
 
 You'll rarely create individual Pods directly in Kubernetes--even singleton Pods. This is because Pods are designed as relatively ephemeral, disposable entities. When a Pod gets created (directly by you, or indirectly by a Controller), it is scheduled to run on a Node in your your cluster. The Pod remains on that Node until the process is terminated, the pod object is deleted, or the pod is *evicted* for lack of resources, or the Node fails.
 
@@ -55,7 +55,7 @@ You'll rarely create individual Pods directly in Kubernetes--even singleton Pods
 
 Pods do not, by themselves, self-heal. If a Pod is scheduled to a Node that fails, or if the scheduling operation itself fails, the Pod is deleted; likewise, a Pod won't survive an eviction due to a lack of resources or Node maintenance. Kubernetes uses a higher-level abstraction, called a *Controller*, that handles the work of managing the relatively disposable Pod instances. Thus, while it is possible to use Pod directly, it's far more common in Kubernetes to manage your pods using a Controller. See [Pods and Controllers](#pods-and-controllers) for more information on how Kubernetes uses Controllers to implement Pod scaling and healing.
 
-#### Pods and Controllers
+### Pods and Controllers
 
 A Controller can create and manage multiple Pods for you, handling replication and rollout and providing self-healing capabilities at cluster scope. For example, if a Node fails, the Controller might automatically replace the Pod by scheduling an identical replacement on a different Node). 
 
@@ -75,4 +75,4 @@ In general, Controllers use a Pod Template that you provide to create the Pods f
   * Other Pod Topics
 {% endcapture %}
 
-{% include templates/concept.md %}
\ No newline at end of file
+{% include templates/concept.md %}
diff --git a/docs/concepts/object-metadata/annotations.md b/docs/concepts/object-metadata/annotations.md
index fbf73f48fd..00840db613 100644
--- a/docs/concepts/object-metadata/annotations.md
+++ b/docs/concepts/object-metadata/annotations.md
@@ -8,7 +8,7 @@ to objects. Clients such as tools and libraries can retrieve this metadata.
 {% endcapture %}
 
 {% capture body %}
-### Attaching metadata to objects
+## Attaching metadata to objects
 
 You can use either labels or annotations to attach metadata to Kubernetes
 objects. Labels can be used to select objects and to find
diff --git a/docs/tasks/access-application-cluster/load-balance-access-application-cluster.md b/docs/tasks/access-application-cluster/load-balance-access-application-cluster.md
index c42d97e3e9..f6cb1251fe 100644
--- a/docs/tasks/access-application-cluster/load-balance-access-application-cluster.md
+++ b/docs/tasks/access-application-cluster/load-balance-access-application-cluster.md
@@ -28,7 +28,7 @@ load-balanced access to an application running in a cluster.
 
 {% capture lessoncontent %}
 
-### Creating a Service for an application running in two pods
+## Creating a Service for an application running in two pods
 
 1. Run a Hello World application in your cluster:
 
@@ -98,7 +98,7 @@ load-balanced access to an application running in a cluster.
     where `` us the IP address of your Minikube node,
     and `` is the NodePort value for your service.
 
-### Using a service configuration file
+## Using a service configuration file
 
 As an alternative to using `kubectl expose`, you can use a
 [service configuration file](/docs/user-guide/services/operations)
@@ -108,15 +108,6 @@ to create a Service.
 {% endcapture %}
 
 
-{% capture cleanup %}
-
-If you want to stop the Hello World application, enter these commands:
-
-    TODO
-
-{% endcapture %}
-
-
 {% capture whatsnext %}
 
 Learn more about
diff --git a/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md b/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md
index 4b0acb8f88..f3fe10161e 100644
--- a/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md
+++ b/docs/tasks/access-application-cluster/port-forward-access-application-cluster.md
@@ -22,7 +22,7 @@ for database debugging.
 
 {% capture steps %}
 
-### Creating a pod to run a Redis server
+## Creating a pod to run a Redis server
 
 1. Create a pod:
 
@@ -51,7 +51,7 @@ for database debugging.
 
         6379
 
-### Forward a local port to a port on the pod
+## Forward a local port to a port on the pod
 
 1. Forward port 6379 on the local workstation to port 6379 of redis-master pod:
 
@@ -77,7 +77,7 @@ for database debugging.
 
 {% capture discussion %}
 
-### Discussion
+## Discussion
 
 Connections made to local port 6379 are forwarded to port 6379 of the pod that
 is running the Redis server. With this connection in place you can use your
diff --git a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md
index 9dee7c9c4d..92baf97aa9 100644
--- a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md
+++ b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md
@@ -19,13 +19,13 @@ This page shows how to use an HTTP proxy to access the Kubernetes API.
 
 {% capture steps %}
 
-### Using kubectl to start a proxy server
+## Using kubectl to start a proxy server
 
 This command starts a proxy to the Kubernetes API server:
 
     kubectl proxy --port=8080
 
-### Exploring the Kubernetes API
+## Exploring the Kubernetes API
 
 When the proxy server is running, you can explore the API using `curl`, `wget`,
 or a browser.
diff --git a/docs/tasks/administer-cluster/assign-pods-nodes.md b/docs/tasks/administer-cluster/assign-pods-nodes.md
index 03dc0c021c..43db077f76 100644
--- a/docs/tasks/administer-cluster/assign-pods-nodes.md
+++ b/docs/tasks/administer-cluster/assign-pods-nodes.md
@@ -15,7 +15,7 @@ Kubernetes cluster.
 
 {% capture steps %}
 
-### Adding a label to a node
+## Adding a label to a node
 
 1. List the nodes in your cluster:
 
@@ -49,7 +49,7 @@ Kubernetes cluster.
     In the preceding output, you can see that the `worker0` node has a
     `disktype=ssd` label.
 
-### Creating a pod that gets scheduled to your chosen node
+## Creating a pod that gets scheduled to your chosen node
 
 This pod configuration file describes a pod that has a node selector,
 `disktype: ssd`. This means that the pod will get scheduled on a node that has
diff --git a/docs/tasks/administer-cluster/change-pv-reclaim-policy.md b/docs/tasks/administer-cluster/change-pv-reclaim-policy.md
index 0e70c0c709..08a18f8f08 100644
--- a/docs/tasks/administer-cluster/change-pv-reclaim-policy.md
+++ b/docs/tasks/administer-cluster/change-pv-reclaim-policy.md
@@ -15,7 +15,7 @@ PersistentVolume.
 
 {% capture steps %}
 
-### Why change reclaim policy of a PersistentVolume
+## Why change reclaim policy of a PersistentVolume
 
 `PersistentVolumes` can have various reclaim policies, including "Retain",
 "Recycle", and "Delete". For dynamically provisioned `PersistentVolumes`, 
@@ -27,7 +27,7 @@ policy. With the "Retain" policy, if a user deletes a `PeristentVolumeClaim`,
 the corresponding `PersistentVolume` is not be deleted. Instead, it is moved to the
 `Released` phase, where all of its data can be manually recovered.
 
-### Changing the reclaim policy of a PersistentVolume
+## Changing the reclaim policy of a PersistentVolume
 
 1. List the PersistentVolumes in your cluster:
 
@@ -70,7 +70,7 @@ the corresponding `PersistentVolume` is not be deleted. Instead, it is moved to
 * Learn more about [PersistentVolumes](/docs/user-guide/persistent-volumes/).
 * Learn more about [PersistentVolumeClaims](/docs/user-guide/persistent-volumes/#persistentvolumeclaims).
 
-#### Reference
+### Reference
 
 * [PersistentVolume](/docs/api-reference/v1/definitions/#_v1_persistentvolume)
 * [PersistentVolumeClaim](/docs/api-reference/v1/definitions/#_v1_persistentvolumeclaim)
diff --git a/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md b/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md
index fa8202865d..069409058a 100644
--- a/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md
+++ b/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md
@@ -19,7 +19,7 @@ Kubernetes cluster.
 
 {% capture steps %}
 
-### Determining whether DNS horizontal autoscaling is already enabled
+## Determining whether DNS horizontal autoscaling is already enabled
 
 List the Deployments in your cluster in the kube-system namespace:
 
@@ -36,7 +36,7 @@ If you see "kube-dns-autoscaler" in the output, DNS horizontal autoscaling is
 already enabled, and you can skip to
 [Tuning autoscaling parameters](#tuning-autoscaling-parameters).
 
-### Getting the name of your DNS Deployment or ReplicationController
+## Getting the name of your DNS Deployment or ReplicationController
 
 List the Deployments in your cluster in the kube-system namespace:
 
@@ -63,7 +63,7 @@ The output is similar to this:
     kube-dns-v20    1         1         1         ...
     ...
 
-### Determining your scale target
+## Determining your scale target
 
 If you have a DNS Deployment, your scale target is:
 
@@ -80,7 +80,7 @@ where  is the name of your DNS ReplicationController. For example,
 if your DNS ReplicationController name is kube-dns-v20, your scale target is
 ReplicationController/kube-dns-v20.
 
-### Enabling DNS horizontal autoscaling
+## Enabling DNS horizontal autoscaling
 
 In this section, you create a Deployment. The Pods in the Deployment run a
 container based on the `cluster-proportional-autoscaler-amd64` image.
@@ -102,7 +102,7 @@ The output of a successful command is:
 
 DNS horizontal autoscaling is now enabled.
 
-### Tuning autoscaling parameters
+## Tuning autoscaling parameters
 
 Verify that the kube-dns-autoscaler ConfigMap exists:
 
@@ -139,12 +139,12 @@ cores, `nodesPerReplica` dominates.
 There are other supported scaling patterns. For details, see
 [cluster-proportional-autoscaler](https://github.com/kubernetes-incubator/cluster-proportional-autoscaler).
 
-### Disable DNS horizontal autoscaling
+## Disable DNS horizontal autoscaling
 
 There are a few options for turning DNS horizontal autoscaling. Which option to
 use depends on different conditions.
 
-#### Option 1: Scale down the kube-dns-autoscaler deployment to 0 replicas
+### Option 1: Scale down the kube-dns-autoscaler deployment to 0 replicas
 
 This option works for all situations. Enter this command:
 
@@ -165,7 +165,7 @@ The output displays 0 in the DESIRED and CURRENT columns:
     kube-dns-autoscaler   0         0         0            0           ...
     ...
 
-#### Option 2: Delete the kube-dns-autoscaler deployment
+### Option 2: Delete the kube-dns-autoscaler deployment
 
 This option works if kube-dns-autoscaler is under your own control, which means
 no one will re-create it:
@@ -176,7 +176,7 @@ The output is:
 
     deployment "kube-dns-autoscaler" deleted
 
-#### Option 3: Delete the kube-dns-autoscaler manifest file from the master node
+### Option 3: Delete the kube-dns-autoscaler manifest file from the master node
 
 This option works if kube-dns-autoscaler is under control of the
 [Addon Manager](https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/README.md)'s
@@ -194,7 +194,7 @@ kube-dns-autoscaler Deployment.
 
 {% capture discussion %}
 
-### Understanding how DNS horizontal autoscaling works
+## Understanding how DNS horizontal autoscaling works
 
 * The cluster-proportional-autoscaler application is deployed separately from
 the DNS service.
@@ -215,7 +215,7 @@ the autoscaler Pod.
 * The autoscaler provides a controller interface to support two control
 patterns: *linear* and *ladder*.
 
-### Future enhancements
+## Future enhancements
 
 Control patterns, in addition to linear and ladder, that consider custom metrics
 are under consideration as a future development.
diff --git a/docs/tasks/administer-cluster/safely-drain-node.md b/docs/tasks/administer-cluster/safely-drain-node.md
index 902d9b1db3..d69bcb2363 100644
--- a/docs/tasks/administer-cluster/safely-drain-node.md
+++ b/docs/tasks/administer-cluster/safely-drain-node.md
@@ -21,7 +21,7 @@ application-level disruption SLOs you want the system to enforce.
 
 {% capture steps %}
 
-### Use `kubectl drain` to remove a node from service
+## Use `kubectl drain` to remove a node from service
 
 You can use `kubectl drain` to safely evict all of your pods from a
 node before you perform maintenance on the node (e.g. kernel upgrade,
@@ -64,7 +64,7 @@ kubectl uncordon 
 ```
 afterwards to tell Kubernetes that it can resume scheduling new pods onto the node.
 
-### Draining multiple nodes in parallel
+## Draining multiple nodes in parallel
 
 The `kubectl drain` command should only be issued to a single node at a
 time. However, you can run multiple `kubectl drain` commands for
diff --git a/docs/tasks/configure-pod-container/assign-cpu-ram-container.md b/docs/tasks/configure-pod-container/assign-cpu-ram-container.md
index 8722499c34..24cca3eca5 100644
--- a/docs/tasks/configure-pod-container/assign-cpu-ram-container.md
+++ b/docs/tasks/configure-pod-container/assign-cpu-ram-container.md
@@ -19,7 +19,7 @@ in a Kubernetes Pod.
 
 {% capture steps %}
 
-### Assigning CPU and RAM resources to a container
+## Assigning CPU and RAM resources to a container
 
 When you create a Pod, you can request CPU and RAM resources for the containers
 that run in the Pod. You can also set limits for CPU and RAM resources. To
@@ -64,7 +64,7 @@ for the `Pod`:
               cpu:    250m
               memory:   64Mi
 
-### Understanding CPU and RAM units
+## Understanding CPU and RAM units
 
 The CPU resource is measured in *cpu*s. Fractional values are allowed. You can
 use the suffix *m* to mean mili. For example 100m cpu is 100 milicpu, and is
@@ -89,7 +89,7 @@ If you specify a request, a Pod is guaranteed to be able to use that much
 of the resource. See
 [Resource QoS](https://github.com/kubernetes/kubernetes/blob/{{page.githubbranch}}/docs/design/resource-qos.md) for the difference between resource limits and requests.
 
-### If you don't specify limits or requests
+## If you don't specify limits or requests
 
 If you don't specify a RAM limit, Kubernetes places no upper bound on the
 amount of RAM a Container can use. A Container could use all the RAM
diff --git a/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
index 715ea3effb..a46f910714 100644
--- a/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
+++ b/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
@@ -21,7 +21,7 @@ Container is terminated.
 
 {% capture steps %}
 
-### Defining postStart and preStop handlers
+## Defining postStart and preStop handlers
 
 In this exercise, you create a Pod that has one Container. The Container has handlers
 for the postStart and preStop events.
@@ -60,7 +60,7 @@ The output shows the text written by the postStart handler:
 
 {% capture discussion %}
 
-### Discussion
+## Discussion
 
 Kubernetes sends the postStart event immediately after the Container is created.
 There is no guarantee, however, that the postStart handler is called before
@@ -83,7 +83,7 @@ unless the Pod's grace period expires. For more details, see
 * Learn more about the [lifecycle of a Pod](https://kubernetes.io/docs/user-guide/pod-states/).
 
 
-#### Reference
+### Reference
  
 * [Lifecycle](https://kubernetes.io/docs/resources-reference/1_5/#lifecycle-v1)
 * [Container](https://kubernetes.io/docs/resources-reference/1_5/#container-v1)
diff --git a/docs/tasks/configure-pod-container/communicate-containers-same-pod.md b/docs/tasks/configure-pod-container/communicate-containers-same-pod.md
index 0f934dc085..815ee8dc19 100644
--- a/docs/tasks/configure-pod-container/communicate-containers-same-pod.md
+++ b/docs/tasks/configure-pod-container/communicate-containers-same-pod.md
@@ -19,7 +19,7 @@ in the same Pod.
 
 {% capture steps %}
 
-###  Creating a Pod that runs two Containers
+##  Creating a Pod that runs two Containers
 
 In this exercise, you create a Pod that runs two Containers. The two containers
 share a Volume that they can use to communicate. Here is the configuration file
@@ -111,7 +111,7 @@ The output shows that nginx serves a web page written by the debian container:
 
 {% capture discussion %}
 
-### Discussion
+## Discussion
 
 The primary reason that Pods can have multiple containers is to support
 helper applications that assist a primary application. Typical examples of
diff --git a/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md b/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md
index 3b7f7462ef..8c877ac16c 100644
--- a/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md
+++ b/docs/tasks/configure-pod-container/configure-liveness-readiness-probes.md
@@ -30,7 +30,7 @@ When a Pod is not ready, it is removed from Service load balancers.
 
 {% capture steps %}
 
-### Defining a liveness command
+## Defining a liveness command
 
 Many applications running for long periods of time eventually transition to
 broken states, and cannot recover except by being restarted. Kubernetes provides
@@ -117,7 +117,7 @@ NAME            READY     STATUS    RESTARTS   AGE
 liveness-exec   1/1       Running   1          1m
 ```
 
-### Defining a liveness HTTP request
+## Defining a liveness HTTP request
 
 Another kind of liveness probe uses an HTTP GET request. Here is the configuration
 file for a Pod that runs a container based on the `gcr.io/google_containers/liveness`
@@ -173,7 +173,7 @@ the Container has been restarted:
 kubectl describe pod liveness-http
 ```
 
-### Using a named port
+## Using a named port
 
 You can use a named
 [ContainerPort](/docs/api-reference/v1/definitions/#_v1_containerport)
@@ -191,7 +191,7 @@ livenessProbe:
   port: liveness-port
 ```
 
-### Defining readiness probes
+## Defining readiness probes
 
 Sometimes, applications are temporarily unable to serve traffic.
 For example, an application might need to load large data or configuration
@@ -219,7 +219,7 @@ readinessProbe:
 
 {% capture discussion %}
 
-### Discussion
+## Discussion
 
 {% comment %}
 Eventually, some of this Discussion section could be moved to a concept topic.
@@ -260,7 +260,7 @@ In addition to command probes and HTTP probes, Kubenetes supports
 * Learn more about
 [Health Checking section](/docs/user-guide/walkthrough/k8s201/#health-checking).
 
-#### Reference
+### Reference
 
 * [Pod](http://kubernetes.io/docs/api-reference/v1/definitions#_v1_pod)
 * [Container](/docs/api-reference/v1/definitions/#_v1_container)
diff --git a/docs/tasks/configure-pod-container/configure-pod-initialization.md b/docs/tasks/configure-pod-container/configure-pod-initialization.md
index add65b09ee..7aa2bff40a 100644
--- a/docs/tasks/configure-pod-container/configure-pod-initialization.md
+++ b/docs/tasks/configure-pod-container/configure-pod-initialization.md
@@ -16,7 +16,7 @@ application Container runs.
 
 {% capture steps %}
 
-### Creating a Pod that has an init Container
+## Creating a Pod that has an init Container
 
 In this exercise you create a Pod that has one application Container and one
 init Container. The init Container runs to completion before the application
diff --git a/docs/tasks/configure-pod-container/configure-volume-storage.md b/docs/tasks/configure-pod-container/configure-volume-storage.md
index 6919a91fb0..92756615a8 100644
--- a/docs/tasks/configure-pod-container/configure-volume-storage.md
+++ b/docs/tasks/configure-pod-container/configure-volume-storage.md
@@ -23,7 +23,7 @@ key-value cache and store.
 
 {% capture steps %}
 
-### Configuring a volume for a Pod
+## Configuring a volume for a Pod
 
 In this exercise, you create a Pod that runs one Container. This Pod has a
 Volume of type
diff --git a/docs/tasks/configure-pod-container/define-command-argument-container.md b/docs/tasks/configure-pod-container/define-command-argument-container.md
index 4fd988744d..df4350aa1a 100644
--- a/docs/tasks/configure-pod-container/define-command-argument-container.md
+++ b/docs/tasks/configure-pod-container/define-command-argument-container.md
@@ -19,7 +19,7 @@ in a Kubernetes Pod.
 
 {% capture steps %}
 
-### Defining a command and arguments when you create a Pod
+## Defining a command and arguments when you create a Pod
 
 When you create a Pod, you can define a command and arguments for the
 containers that run in the Pod. To define a command, include the `command`
@@ -60,7 +60,7 @@ from the Pod:
         command-demo
         tcp://10.3.240.1:443
 
-### Using environment variables to define arguments
+## Using environment variables to define arguments
 
 In the preceding example, you defined the arguments directly by
 providing strings. As an alternative to providing strings directly,
@@ -81,7 +81,7 @@ and
 NOTE: The environment variable appears in parentheses, `"$(VAR)"`. This is
 required for the variable to be expanded in the `command` or `args` field.
 
-### Running a command in a shell
+## Running a command in a shell
 
 In some cases, you need your command to run in a shell. For example, your
 command might consist of several commands piped together, or it might be a shell
diff --git a/docs/tasks/configure-pod-container/define-environment-variable-container.md b/docs/tasks/configure-pod-container/define-environment-variable-container.md
index f24f1bcc8a..7faba40522 100644
--- a/docs/tasks/configure-pod-container/define-environment-variable-container.md
+++ b/docs/tasks/configure-pod-container/define-environment-variable-container.md
@@ -19,7 +19,7 @@ in a Kubernetes Pod.
 
 {% capture steps %}
 
-### Defining an environment variable for a container
+## Defining an environment variable for a container
 
 When you create a Pod, you can set environment variables for the containers
 that run in the Pod. To set environment variables, include the `env` field in
diff --git a/docs/tasks/configure-pod-container/distribute-credentials-secure.md b/docs/tasks/configure-pod-container/distribute-credentials-secure.md
index 48272a7cba..69d5d37890 100644
--- a/docs/tasks/configure-pod-container/distribute-credentials-secure.md
+++ b/docs/tasks/configure-pod-container/distribute-credentials-secure.md
@@ -15,7 +15,7 @@ encryption keys, into Pods.
 
 {% capture steps %}
 
-### Converting your secret data to a base-64 representation
+## Converting your secret data to a base-64 representation
 
 Suppose you want to have two pieces of secret data: a username `my-app` and a password
 `39528$vdg7Jb`. First, use [Base64 encoding](https://www.base64encode.org/) to
@@ -28,7 +28,7 @@ example:
 The output shows that the base-64 representation of your username is `bXktYXBwCg==`,
 and the base-64 representation of your password is `Mzk1MjgkdmRnN0piCg==`.
 
-### Creating a Secret
+## Creating a Secret
 
 Here is a configuration file you can use to create a Secret that holds your
 username and password:
@@ -72,7 +72,7 @@ username and password:
         password:   13 bytes
         username:   7 bytes
 
-### Creating a Pod that has access to the secret data through a Volume
+## Creating a Pod that has access to the secret data through a Volume
 
 Here is a configuration file you can use to create a Pod:
 
@@ -119,7 +119,7 @@ is exposed:
         my-app
         39528$vdg7Jb
 
-### Creating a Pod that has access to the secret data through environment variables
+## Creating a Pod that has access to the secret data through environment variables
 
 Here is a configuration file you can use to create a Pod:
 
@@ -160,7 +160,7 @@ Here is a configuration file you can use to create a Pod:
 * Learn more about [Secrets](/docs/user-guide/secrets/).
 * Learn about [Volumes](/docs/user-guide/volumes/).
 
-#### Reference
+### Reference
 
 * [Secret](docs/api-reference/v1/definitions/#_v1_secret)
 * [Volume](docs/api-reference/v1/definitions/#_v1_volume)
diff --git a/docs/tasks/configure-pod-container/pull-image-private-registry.md b/docs/tasks/configure-pod-container/pull-image-private-registry.md
index 5560dd9a30..e9b640873a 100644
--- a/docs/tasks/configure-pod-container/pull-image-private-registry.md
+++ b/docs/tasks/configure-pod-container/pull-image-private-registry.md
@@ -20,7 +20,7 @@ private Docker registry or repository.
 
 {% capture steps %}
 
-### Logging in to Docker
+## Logging in to Docker
 
     docker login
 
@@ -43,7 +43,7 @@ The output contains a section similar to this:
         }
     }
 
-### Creating a Secret that holds your authorization token
+## Creating a Secret that holds your authorization token
 
 Create a Secret named `regsecret`:
 
@@ -55,7 +55,7 @@ where:
 * `` is your Docker password.
 * `` is your Docker email.
 
-### Understanding your Secret
+## Understanding your Secret
 
 To understand what's in the Secret you just created, start by viewing the
 Secret in YAML format:
@@ -92,7 +92,7 @@ The output is similar to this:
 Notice that the secret data contains the authorization token from your
 `config.json` file.
 
-### Creating a Pod that uses your Secret
+## Creating a Pod that uses your Secret
 
 Here is a configuration file for a Pod that needs access to your secret data:
 
diff --git a/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md b/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md
index 3f1c5fbc89..3a0e79898a 100644
--- a/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md
+++ b/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md
@@ -27,7 +27,7 @@ the general
 
 {% capture steps %}
 
-### Writing and reading a termination message
+## Writing and reading a termination message
 
 In this exercise, you create a Pod that runs one container.
 The configuration file specifies a command that runs when
@@ -75,7 +75,7 @@ only the termination message:
 {% raw %}    kubectl get pod termination-demo -o go-template="{{range .status.containerStatuses}}{{.lastState.terminated.message}}{{end}}"{% endraw %}
 ```
 
-### Setting the termination log file
+## Setting the termination log file
 
 By default Kubernetes retrieves termination messages from
 `/dev/termination-log`. To change this to a different file,
diff --git a/docs/tasks/manage-stateful-set/debugging-a-statefulset.md b/docs/tasks/manage-stateful-set/debugging-a-statefulset.md
index 2266d7a323..f66a8a1c53 100644
--- a/docs/tasks/manage-stateful-set/debugging-a-statefulset.md
+++ b/docs/tasks/manage-stateful-set/debugging-a-statefulset.md
@@ -26,7 +26,7 @@ This task shows you how to debug a StatefulSet.
 
 {% capture steps %}
 
-### Debugging a StatefulSet
+## Debugging a StatefulSet
 
 In order to list all the pods which belong to a StatefulSet, which have a label `app=myapp` set on them, you can use the following: 
 
@@ -44,7 +44,7 @@ kubectl annotate pods  pod.alpha.kubernetes.io/initialized="false" --o
 
 When the annotation is set to `"false"`, the StatefulSet will not respond to its Pods becoming unhealthy or unavailable. It will not create replacement Pods till the annotation is removed or set to `"true"` on each StatefulSet Pod. 
 
-#### Step-wise Initialization
+### Step-wise Initialization
 
 You can also use the same annotation to debug race conditions during bootstrapping of the StatefulSet by setting the `pod.alpha.kubernetes.io/initialized` annotation to `"false"` in the `.spec.template.metadata.annotations` field of the StatefulSet prior to creating it. 
 
diff --git a/docs/tasks/manage-stateful-set/delete-pods.md b/docs/tasks/manage-stateful-set/delete-pods.md
index 4b31def936..d1b66ce881 100644
--- a/docs/tasks/manage-stateful-set/delete-pods.md
+++ b/docs/tasks/manage-stateful-set/delete-pods.md
@@ -21,13 +21,13 @@ This page shows how to delete Pods which are part of a stateful set, and explain
 {% capture steps %}
 
 
-### StatefulSet considerations
+## StatefulSet considerations
 
 In normal operation of a StatefulSet, there is **never** a need to force delete a StatefulSet Pod. The StatefulSet controller is responsible for creating, scaling and deleting members of the StatefulSet. It tries to ensure that the specified number of Pods from ordinal 0 through N-1 are alive and ready. StatefulSet ensures that, at any time, there is at most one Pod with a given identity running in a cluster. This is referred to as *at most one* semantics provided by a StatefulSet.
 
 Manual force deletion should be undertaken with caution, as it has the potential to violate the at most one semantics inherent to StatefulSet. StatefulSets may be used to run distributed and clustered applications which have a need for a stable network identity and stable storage. These applications often have configuration which relies on an ensemble of a fixed number of members with fixed identities. Having multiple members with the same identity can be disastrous and may lead to data loss (e.g. split brain scenario in quorum-based systems). 
 
-### Deleting Pods
+## Deleting Pods
 
 You can perform a graceful pod deletion with the following command:
 
@@ -46,7 +46,7 @@ The recommended best practice is to use the first or second approach. If a Node
 
 Normally, the system completes the deletion once the Pod is no longer running on a Node, or the Node is deleted by an administrator. You may override this by force deleting the Pod.
 
-#### Force Deletion
+### Force Deletion
 
 Force deletions **do not** wait for confirmation from the kubelet that the Pod has been terminated. Irrespective of whether a force deletion is successful in killing a Pod, it will immediately free up the name from the apiserver. This would let the StatefulSet controller create a replacement Pod with that same identity; this can lead to the duplication of a still-running Pod, and if said Pod can still communicate with the other members of the StatefulSet, will violate the at most one semantics that StatefulSet is designed to guarantee.
 
diff --git a/docs/tasks/manage-stateful-set/deleting-a-statefulset.md b/docs/tasks/manage-stateful-set/deleting-a-statefulset.md
index 5ea82aef04..76cc87dcf0 100644
--- a/docs/tasks/manage-stateful-set/deleting-a-statefulset.md
+++ b/docs/tasks/manage-stateful-set/deleting-a-statefulset.md
@@ -22,7 +22,7 @@ This task shows you how to delete a StatefulSet.
 
 {% capture steps %}
 
-### Deleting a StatefulSet
+## Deleting a StatefulSet
 
 You can delete a StatefulSet in the same way you delete other resources in Kubernetes: use the `kubectl delete` command, and specify the StatefulSet either by file or by name.
 
@@ -52,13 +52,13 @@ By passing `--cascade=false` to `kubectl delete`, the Pods managed by the Statef
 kubectl delete pods -l app=myapp
 ```
 
-#### Persistent Volumes
+### Persistent Volumes
 
 Deleting the Pods in a StatefulSet will not delete the associated volumes. This is to ensure that you have the chance to copy data off the volume before deleting it. Deleting the PVC after the pods have left the [terminating state](/docs/user-guide/pods/index#termination-of-pods) might trigger deletion of the backing Persistent Volumes depending on the storage class and reclaim policy. You should never assume ability to access a volume after claim deletion.
 
 **Note: Use caution when deleting a PVC, as it may lead to data loss.**
 
-#### Complete deletion of a StatefulSet
+### Complete deletion of a StatefulSet
 
 To simply delete everything in a StatefulSet, including the associated pods, you can run a series of commands similar to the following:
 
@@ -72,7 +72,7 @@ kubectl delete pvc -l app=myapp
 
 In the example above, the Pods have the label `app=myapp`; substitute your own label as appropriate.
 
-#### Force deletion of StatefulSet pods
+### Force deletion of StatefulSet pods
 
 If you find that some pods in your StatefulSet are stuck in the 'Terminating' or 'Unknown' states for an extended period of time, you may need to manually intervene to forcefully delete the pods from the apiserver. This is a potentially dangerous task. Refer to [Deleting StatefulSet Pods](/docs/tasks/manage-stateful-set/delete-pods/) for details.
 
diff --git a/docs/tasks/manage-stateful-set/scale-stateful-set.md b/docs/tasks/manage-stateful-set/scale-stateful-set.md
index d00fbc055b..eda728efdd 100644
--- a/docs/tasks/manage-stateful-set/scale-stateful-set.md
+++ b/docs/tasks/manage-stateful-set/scale-stateful-set.md
@@ -25,13 +25,13 @@ This page shows how to scale a StatefulSet.
 
 {% capture steps %}
 
-### Use `kubectl` to scale StatefulSets
+## Use `kubectl` to scale StatefulSets
 
 Make sure you have `kubectl` upgraded to Kubernetes version 1.5 or later before
 continuing. If you're unsure, run `kubectl version` and check `Client Version`
 for which kubectl you're using.
 
-#### `kubectl scale`
+### `kubectl scale`
 
 First, find the StatefulSet you want to scale. Remember, you need to first understand if you can scale it or not. 
 
@@ -45,7 +45,7 @@ Change the number of replicas of your StatefulSet:
 kubectl scale statefulsets  --replicas=
 ```
 
-#### Alternative: `kubectl apply` / `kubectl edit` / `kubectl patch`
+### Alternative: `kubectl apply` / `kubectl edit` / `kubectl patch`
 
 Alternatively, you can do [in-place updates](/docs/user-guide/managing-deployments/#in-place-updates-of-resources) on your StatefulSets. 
 
@@ -68,9 +68,9 @@ Or use `kubectl patch`:
 kubectl patch statefulsets  -p '{"spec":{"replicas":}}'
 ```
 
-### Troubleshooting
+## Troubleshooting
 
-#### Scaling down doesn't not work right
+### Scaling down doesn't not work right
 
 You cannot scale down a StatefulSet when any of the stateful Pods it manages is unhealthy. Scaling down only takes place
 after those stateful Pods become running and ready. 
diff --git a/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set.md b/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set.md
index 592d07f833..57852bd1cc 100644
--- a/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set.md
+++ b/docs/tasks/manage-stateful-set/upgrade-pet-set-to-stateful-set.md
@@ -23,7 +23,7 @@ This page shows how to upgrade from PetSets (Kubernetes version 1.3 or 1.4) to *
 
 {% capture steps %}
 
-### Differences between alpha PetSets and beta StatefulSets
+## Differences between alpha PetSets and beta StatefulSets
 
 PetSet was introduced as an alpha resource in Kubernetes release 1.3, and was renamed to StatefulSet as a beta resource in 1.5. 
 Here are some notable changes:
@@ -33,13 +33,13 @@ Here are some notable changes:
 * **Flipped debug annotation behavior**: The default value of the debug annotation (`pod.alpha.kubernetes.io/initialized`) is now `true`. The absence of this annotation will pause PetSet operations, but will NOT pause StatefulSet operations. In most cases, you no longer need this annotation in your StatefulSet manifests. 
 
 
-### Upgrading from PetSets to StatefulSets
+## Upgrading from PetSets to StatefulSets
 
 Note that these steps need to be done in the specified order. You **should
 NOT upgrade your Kubernetes master, nodes, or `kubectl` to Kubernetes version
 1.5 or later**, until told to do so.
 
-#### Find all PetSets and their manifests 
+### Find all PetSets and their manifests 
 
 First, find all existing PetSets in your cluster:
 
@@ -60,7 +60,7 @@ Here's an example command for you to save all existing PetSets as one file.
 kubectl get petsets --all-namespaces -o yaml > all-petsets.yaml
 ```
 
-#### Prepare StatefulSet manifests 
+### Prepare StatefulSet manifests 
 
 Now, for every PetSet manifest you have, prepare a corresponding StatefulSet manifest: 
 
@@ -71,7 +71,7 @@ Now, for every PetSet manifest you have, prepare a corresponding StatefulSet man
 It's recommended that you keep both PetSet manifests and StatefulSet manifests, so that you can safely roll back and recreate your PetSets, 
 if you decide not to upgrade your cluster. 
 
-#### Delete all PetSets without cascading
+### Delete all PetSets without cascading
 
 If you find existing PetSets in your cluster in the previous step, you need to delete all PetSets *without cascading*. You can do this from `kubectl` with `--cascade=false`. 
 Note that if the flag isn't set, **cascading deletion will be performed by default**, and all Pods managed by your PetSets will be gone. 
@@ -103,18 +103,18 @@ kubectl get petsets --all-namespaces
 At this moment, you've deleted all PetSets in your cluster, but not their Pods, Persistent Volumes, or Persistent Volume Claims. 
 However, since the Pods are not managed by PetSets anymore, they will be vulnerable to node failures until you finish the master upgrade and recreate StatefulSets.
 
-#### Upgrade your master to Kubernetes version 1.5 or later
+### Upgrade your master to Kubernetes version 1.5 or later
 
 Now, you can [upgrade your Kubernetes master](/docs/admin/cluster-management/#upgrading-a-cluster) to Kubernetes version 1.5 or later.
 Note that **you should NOT upgrade Nodes at this time**, because the Pods
 (that were once managed by PetSets) are now vulnerable to node failures. 
 
-#### Upgrade kubectl to Kubernetes version 1.5 or later
+### Upgrade kubectl to Kubernetes version 1.5 or later
 
 Upgrade `kubectl` to Kubernetes version 1.5 or later, following [the steps for installing and setting up 
 kubectl](/docs/user-guide/prereqs/).
 
-#### Create StatefulSets
+### Create StatefulSets
 
 Make sure you have both master and `kubectl` upgraded to Kubernetes version 1.5
 or later before continuing:
@@ -147,7 +147,7 @@ newly-upgraded cluster:
 kubectl get statefulsets --all-namespaces
 ```
 
-#### Upgrade nodes to Kubernetes version 1.5 or later (optional)
+### Upgrade nodes to Kubernetes version 1.5 or later (optional)
 
 You can now [upgrade Kubernetes nodes](/docs/admin/cluster-management/#upgrading-a-cluster)
 to Kubernetes version 1.5 or later. This step is optional, but needs to be done after all StatefulSets
diff --git a/docs/tasks/troubleshoot/debug-init-containers.md b/docs/tasks/troubleshoot/debug-init-containers.md
index 1739c03f5a..3c362c5072 100644
--- a/docs/tasks/troubleshoot/debug-init-containers.md
+++ b/docs/tasks/troubleshoot/debug-init-containers.md
@@ -30,7 +30,7 @@ Init Containers.
 
 {% capture steps %}
 
-### Checking the status of Init Containers
+## Checking the status of Init Containers
 
 The Pod status will give you an overview of Init Container execution:
 
@@ -49,7 +49,7 @@ NAME         READY     STATUS     RESTARTS   AGE
 See [Understanding Pod status](#understanding-pod-status) for more examples of
 status values and their meanings.
 
-### Getting details about Init Containers
+## Getting details about Init Containers
 
 You can see detailed information about Init Container execution by running:
 
@@ -98,7 +98,7 @@ kubectl get pod  --template '{{index .metadata.annotations "pod.beta.k
 
 This will return the same information as above, but in raw JSON format.
 
-### Accessing logs from Init Containers
+## Accessing logs from Init Containers
 
 You can access logs for an Init Container by passing its Container name along
 with the Pod name:
@@ -115,7 +115,7 @@ commands as they're executed. For example, you can do this in Bash by running
 
 {% capture discussion %}
 
-### Understanding Pod status
+## Understanding Pod status
 
 A Pod status beginning with `Init:` summarizes the status of Init Container
 execution. The table below describes some example status values that you might
diff --git a/docs/tutorials/services/source-ip.md b/docs/tutorials/services/source-ip.md
index 6efdb42870..56daa8b345 100644
--- a/docs/tutorials/services/source-ip.md
+++ b/docs/tutorials/services/source-ip.md
@@ -15,7 +15,7 @@ of Services, and how you can toggle this behavior according to your needs.
 
 {% include task-tutorial-prereqs.md %}
 
-### Terminology
+## Terminology
 
 This document makes use of the following terms:
 
@@ -26,7 +26,7 @@ This document makes use of the following terms:
 * [Kube-proxy](/docs/user-guide/services/#virtual-ips-and-service-proxies): a network daemon that orchestrates Service VIP management on every node
 
 
-### Prerequisites
+## Prerequisites
 
 You must have a working Kubernetes 1.5 cluster to run the examples in this
 document. The examples use a small nginx webserver that echoes back the source
@@ -50,7 +50,7 @@ deployment "source-ip-app" created
 
 {% capture lessoncontent %}
 
-### Source IP for Services with Type=ClusterIP
+## Source IP for Services with Type=ClusterIP
 
 Packets sent to ClusterIP from within the cluster are never source NAT'd if
 you're running kube-proxy in [iptables mode](/docs/user-guide/services/#proxy-mode-iptables),
@@ -107,7 +107,7 @@ command=GET
 ...
 ```
 
-### Source IP for Services with Type=NodePort
+## Source IP for Services with Type=NodePort
 
 As of Kubernetes 1.5, packets sent to Services with [Type=NodePort](/docs/user-guide/services/#type-nodeport)
 are source NAT'd by default. You can test this by creating a `NodePort` Service:
@@ -204,7 +204,7 @@ Visually:
 
 
 
-### Source IP for Services with Type=LoadBalancer
+## Source IP for Services with Type=LoadBalancer
 
 As of Kubernetes 1.5, packets sent to Services with [Type=LoadBalancer](/docs/user-guide/services/#type-loadbalancer) are
 source NAT'd by default, because all schedulable Kubernetes nodes in the
diff --git a/docs/tutorials/stateful-application/basic-stateful-set.md b/docs/tutorials/stateful-application/basic-stateful-set.md
index 179dd94f71..25621354af 100644
--- a/docs/tutorials/stateful-application/basic-stateful-set.md
+++ b/docs/tutorials/stateful-application/basic-stateful-set.md
@@ -51,7 +51,7 @@ After this tutorial, you will be familiar with the following.
 {% endcapture %}
 
 {% capture lessoncontent %}
-### Creating a StatefulSet 
+## Creating a StatefulSet 
 
 Begin by creating a StatefulSet using the example below. It is similar to the 
 example presented in the
@@ -95,7 +95,7 @@ NAME      DESIRED   CURRENT   AGE
 web       2         1         20s
 ```
 
-#### Ordered Pod Creation
+### Ordered Pod Creation
 
 For a StatefulSet with N replicas, when Pods are being deployed, they are 
 created sequentially, in order from {0..N-1}. Examine the output of the 
@@ -120,11 +120,11 @@ Notice that the `web-0` Pod is launched and set to Pending prior to
 launching `web-1`. In fact, `web-1` is not launched until `web-0` is 
 [Running and Ready](/docs/user-guide/pod-states). 
 
-### Pods in a StatefulSet
+## Pods in a StatefulSet
 Unlike Pods in other controllers, the Pods in a StatefulSet have a unique 
 ordinal index and a stable network identity.
 
-#### Examining the Pod's Ordinal Index
+### Examining the Pod's Ordinal Index
 
 Get the StatefulSet's Pods.
 
@@ -143,7 +143,7 @@ Set controller. The Pods' names take the form
 `-`. Since the `web` StatefulSet has two 
 replicas, it creates two Pods, `web-0` and `web-1`.
 
-#### Using Stable Network Identities
+### Using Stable Network Identities
 Each Pod has a stable hostname based on its ordinal index. Use
 [`kubectl exec`](/docs/user-guide/kubectl/kubectl_exec/) to execute the 
 `hostname` command in each Pod. 
@@ -253,7 +253,7 @@ liveness and readiness, you can use the SRV records of the Pods (
 application will be able to discover the Pods' addresses when they transition 
 to Running and Ready.
 
-#### Writing to Stable Storage
+### Writing to Stable Storage
 
 Get the PersistentVolumeClaims for `web-0` and `web-1`.
 
@@ -326,14 +326,14 @@ Volume Claims are remounted to their `volumeMount`s. No matter what node `web-0`
 and `web-1` are scheduled on, their PersistentVolumes will be mounted to the 
 appropriate mount points.
 
-### Scaling a StatefulSet
+## Scaling a StatefulSet
 Scaling a StatefulSet refers to increasing or decreasing the number of replicas. 
 This is accomplished by updating the `replicas` field. You can use either
 [`kubectl scale`](/docs/user-guide/kubectl/kubectl_scale/) or
 [`kubectl patch`](/docs/user-guide/kubectl/kubectl_patch/) to scale a Stateful 
 Set.
 
-#### Scaling Up
+### Scaling Up
 
 In one terminal window, watch the Pods in the StatefulSet.
 
@@ -378,7 +378,7 @@ created each Pod sequentially with respect to its ordinal index, and it
 waited for each Pod's predecessor to be Running and Ready before launching the 
 subsequent Pod.
 
-#### Scaling Down
+### Scaling Down
 
 In one terminal, watch the StatefulSet's Pods.
 
@@ -412,7 +412,7 @@ web-3     1/1       Terminating   0         42s
 web-3     1/1       Terminating   0         42s
 ```
 
-#### Ordered Pod Termination
+### Ordered Pod Termination
 
 The controller deleted one Pod at a time, with respect to its ordinal index, 
 in reverse order, and it waited for each to be completely shutdown before 
@@ -438,7 +438,7 @@ the StatefulSet's Pods are deleted. This is still true when Pod deletion is
 caused by scaling the StatefulSet down. This feature can be used to facilitate 
 upgrading the container images of Pods in a StatefulSet.
 
-### Updating Containers
+## Updating Containers
 As demonstrated in the [Scaling a StatefulSet](#scaling-a-statefulset) section,
 the `replicas` field of a StatefulSet is mutable. The only other field of a 
 StatefulSet that can be updated is the `spec.template.containers` field. 
@@ -530,14 +530,14 @@ gcr.io/google_containers/nginx-slim:0.7
 
 All the Pods in the StatefulSet are now running a new container image.
 
-### Deleting StatefulSets
+## Deleting StatefulSets
 
 StatefulSet supports both Non-Cascading and Cascading deletion. In a 
 Non-Cascading Delete, the StatefulSet's Pods are not deleted when the Stateful
 Set is deleted. In a Cascading Delete, both the StatefulSet and its Pods are 
 deleted.
 
-#### Non-Cascading Delete
+### Non-Cascading Delete
 
 In one terminal window, watch the Pods in the StatefulSet.
 
@@ -643,7 +643,7 @@ because the StatefulSet never deletes the PersistentVolumes associated with a
 Pod. When you recreated the StatefulSet and it relaunched `web-0`, its original 
 PersistentVolume was remounted.
 
-#### Cascading Delete
+### Cascading Delete
 
 In one terminal window, watch the Pods in the StatefulSet.
 
diff --git a/docs/tutorials/stateful-application/run-replicated-stateful-application.md b/docs/tutorials/stateful-application/run-replicated-stateful-application.md
index 30d22e1cce..cdc373b00d 100644
--- a/docs/tutorials/stateful-application/run-replicated-stateful-application.md
+++ b/docs/tutorials/stateful-application/run-replicated-stateful-application.md
@@ -49,12 +49,12 @@ on general patterns for running stateful applications in Kubernetes.
 
 {% capture lessoncontent %}
 
-### Deploying MySQL
+## Deploying MySQL
 
 The example MySQL deployment consists of a ConfigMap, two Services,
 and a StatefulSet.
 
-#### ConfigMap
+### ConfigMap
 
 Create the ConfigMap from the following YAML configuration file:
 
@@ -74,7 +74,7 @@ portions to apply to different Pods.
 Each Pod decides which portion to look at as it's initializing,
 based on information provided by the StatefulSet controller.
 
-#### Services
+### Services
 
 Create the Services from the following YAML configuration file:
 
@@ -100,7 +100,7 @@ Because there is only one MySQL master, clients should connect directly to the
 MySQL master Pod (through its DNS entry within the Headless Service) to execute
 writes.
 
-#### StatefulSet
+### StatefulSet
 
 Finally, create the StatefulSet from the following YAML configuration file:
 
@@ -133,7 +133,7 @@ This manifest uses a variety of techniques for managing stateful Pods as part of
 a StatefulSet. The next section highlights some of these techniques to explain
 what happens as the StatefulSet creates Pods.
 
-### Understanding stateful Pod initialization
+## Understanding stateful Pod initialization
 
 The StatefulSet controller starts Pods one at a time, in order by their
 ordinal index.
@@ -146,7 +146,7 @@ In this case, that results in Pods named `mysql-0`, `mysql-1`, and `mysql-2`.
 The Pod template in the above StatefulSet manifest takes advantage of these
 properties to perform orderly startup of MySQL replication.
 
-#### Generating configuration
+### Generating configuration
 
 Before starting any of the containers in the Pod spec, the Pod first runs any
 [Init Containers](/docs/user-guide/production-pods/#handling-initialization)
@@ -175,7 +175,7 @@ Combined with the StatefulSet controller's
 this ensures the MySQL master is Ready before creating slaves, so they can begin
 replicating.
 
-#### Cloning existing data
+### Cloning existing data
 
 In general, when a new Pod joins the set as a slave, it must assume the MySQL
 master might already have data on it. It also must assume that the replication
@@ -196,7 +196,7 @@ from the Pod whose ordinal index is one lower.
 This works because the StatefulSet controller always ensures Pod `N` is
 Ready before starting Pod `N+1`.
 
-#### Starting replication
+### Starting replication
 
 After the Init Containers complete successfully, the regular containers run.
 The MySQL Pods consist of a `mysql` container that runs the actual `mysqld`
@@ -220,7 +220,7 @@ connections from other Pods requesting a data clone.
 This server remains up indefinitely in case the StatefulSet scales up, or in
 case the next Pod loses its PersistentVolumeClaim and needs to redo the clone.
 
-### Sending client traffic
+## Sending client traffic
 
 You can send test queries to the MySQL master (hostname `mysql-0.mysql`)
 by running a temporary container with the `mysql:5.7` image and running the
@@ -287,13 +287,13 @@ endpoint might be selected upon each connection attempt:
 You can press **Ctrl+C** when you want to stop the loop, but it's useful to keep
 it running in another window so you can see the effects of the following steps.
 
-### Simulating Pod and Node downtime
+## Simulating Pod and Node downtime
 
 To demonstrate the increased availability of reading from the pool of slaves
 instead of a single server, keep the `SELECT @@server_id` loop from above
 running while you force a Pod out of the Ready state.
 
-#### Break the Readiness Probe
+### Break the Readiness Probe
 
 The [readiness probe](/docs/user-guide/production-pods/#liveness-and-readiness-probes-aka-health-checks)
 for the `mysql` container runs the command `mysql -h 127.0.0.1 -e 'SELECT 1'`
@@ -333,7 +333,7 @@ after a few seconds:
 kubectl exec mysql-2 -c mysql -- mv /usr/bin/mysql.off /usr/bin/mysql
 ```
 
-#### Delete Pods
+### Delete Pods
 
 The StatefulSet also recreates Pods if they're deleted, similar to what a
 ReplicaSet does for stateless Pods.
@@ -348,7 +348,7 @@ PersistentVolumeClaim.
 You should see server ID `102` disappear from the loop output for a while
 and then return on its own.
 
-#### Drain a Node
+### Drain a Node
 
 If your Kubernetes cluster has multiple Nodes, you can simulate Node downtime
 (such as when Nodes are upgraded) by issuing a
@@ -407,7 +407,7 @@ Now uncordon the Node to return it to a normal state:
 kubectl uncordon 
 ```
 
-### Scaling the number of slaves
+## Scaling the number of slaves
 
 With MySQL replication, you can scale your read query capacity by adding slaves.
 With StatefulSet, you can do this with a single command:
diff --git a/docs/tutorials/stateful-application/run-stateful-application.md b/docs/tutorials/stateful-application/run-stateful-application.md
index 928aaecacd..dc7655831f 100644
--- a/docs/tutorials/stateful-application/run-stateful-application.md
+++ b/docs/tutorials/stateful-application/run-stateful-application.md
@@ -37,7 +37,7 @@ application is MySQL.
 
 {% capture lessoncontent %}
 
-### Set up a disk in your environment
+## Set up a disk in your environment
 
 You can use any type of persistent volume for your stateful app. See
 [Types of Persistent Volumes](/docs/user-guide/persistent-volumes/#types-of-persistent-volumes)
@@ -66,7 +66,7 @@ kubectl create -f http://k8s.io/docs/tutorials/stateful-application/gce-volume.y
 ```
 
 
-### Deploy MySQL
+## Deploy MySQL
 
 You can run a stateful application by creating a Kubernetes Deployment
 and connecting it to an existing PersistentVolume using a
@@ -146,7 +146,7 @@ for a secure solution.
         Access Modes:	RWO
         No events.
 
-### Accessing the MySQL instance
+## Accessing the MySQL instance
 
 The preceding YAML file creates a service that
 allows other Pods in the cluster to access the database. The Service option
@@ -171,7 +171,7 @@ If you don't see a command prompt, try pressing enter.
 mysql> 
 ```
 
-### Updating
+## Updating
 
 The image or any other part of the Deployment can be updated as usual
 with the `kubectl apply` command. Here are some precautions that are
@@ -187,7 +187,7 @@ specific to stateful apps:
   one Pod running at a time. The `Recreate` strategy will stop the
   first pod before creating a new one with the updated configuration.
 
-### Deleting a deployment
+## Deleting a deployment
 
 Delete the deployed objects by name:
 
diff --git a/docs/tutorials/stateful-application/zookeeper.md b/docs/tutorials/stateful-application/zookeeper.md
index 1b550fe718..836192de9f 100644
--- a/docs/tutorials/stateful-application/zookeeper.md
+++ b/docs/tutorials/stateful-application/zookeeper.md
@@ -58,7 +58,7 @@ After this tutorial, you will know the following.
 
 {% capture lessoncontent %}
 
-#### ZooKeeper Basics
+### ZooKeeper Basics
 
 [Apache ZooKeeper](https://zookeeper.apache.org/doc/current/) is a 
 distributed, open-source coordination service for distributed applications.
@@ -86,7 +86,7 @@ snapshot their in memory state to storage media. These snapshots can be loaded
 directly into memory, and all WAL entries that preceded the snapshot may be 
 safely discarded.
 
-### Creating a ZooKeeper Ensemble
+## Creating a ZooKeeper Ensemble
 
 The manifest below contains a 
 [Headless Service](/docs/user-guide/services/#headless-services), 
@@ -145,7 +145,7 @@ zk-2      1/1       Running   0         40s
 The StatefulSet controller creates three Pods, and each Pod has a container with 
 a [ZooKeeper 3.4.9](http://www-us.apache.org/dist/zookeeper/zookeeper-3.4.9/) server.
 
-#### Facilitating Leader Election
+### Facilitating Leader Election
 
 As there is no terminating algorithm for electing a leader in an anonymous 
 network, Zab requires explicit membership configuration in order to perform 
@@ -242,7 +242,7 @@ server.2=zk-1.zk-headless.default.svc.cluster.local:2888:3888
 server.3=zk-2.zk-headless.default.svc.cluster.local:2888:3888
 ```
 
-#### Achieving Consensus
+### Achieving Consensus
 
 Consensus protocols require that the identifiers of each participant be 
 unique. No two participants in the Zab protocol should claim the same unique 
@@ -301,7 +301,7 @@ and at least two of the Pods are Running and Ready), or they will fail to do so
 (if either of the aforementioned conditions are not met). No state will arise 
 where one server acknowledges a write on behalf of another.
 
-#### Sanity Testing the Ensemble
+### Sanity Testing the Ensemble
 
 The most basic sanity test is to write some data to one ZooKeeper server and 
 to read the data from another. 
@@ -348,7 +348,7 @@ dataLength = 5
 numChildren = 0
 ```
 
-#### Providing Durable Storage
+### Providing Durable Storage
 
 As mentioned in the [ZooKeeper Basics](#zookeeper-basics) section,
 ZooKeeper commits all entries to a durable WAL, and periodically writes snapshots 
@@ -507,7 +507,7 @@ same PersistentVolume mounted to the ZooKeeper server's data directory.
 Even when the Pods are rescheduled, all of the writes made to the ZooKeeper 
 servers' WALs, and all of their snapshots, remain durable.
 
-### Ensuring Consistent Configuration
+## Ensuring Consistent Configuration
 
 As noted in the [Facilitating Leader Election](#facilitating-leader-election) and
 [Achieving Consensus](#achieving-consensus) sections, the servers in a 
@@ -651,7 +651,7 @@ ZK_DATA_LOG_DIR=/var/lib/zookeeper/log
 ZK_LOG_DIR=/var/log/zookeeper
 ```
 
-#### Configuring Logging
+### Configuring Logging
 
 One of the files generated by the `zkConfigGen.sh` script controls ZooKeeper's logging. 
 ZooKeeper uses [Log4j](http://logging.apache.org/log4j/2.x/), and, by default, 
@@ -721,7 +721,7 @@ For cluster level log shipping and aggregation, you should consider deploying a
 [sidecar](http://blog.kubernetes.io/2015/06/the-distributed-system-toolkit-patterns.html) 
 container to rotate and ship your logs.
 
-#### Configuring a Non-Privileged User
+### Configuring a Non-Privileged User
 
 The best practices with respect to allowing an application to run as a privileged 
 user inside of a container are a matter of debate. If your organization requires 
@@ -773,7 +773,7 @@ and the ZooKeeper process is able to successfully read and write its data.
 drwxr-sr-x 3 zookeeper zookeeper 4096 Dec  5 20:45 /var/lib/zookeeper/data
 ```
 
-### Managing the ZooKeeper Process
+## Managing the ZooKeeper Process
 
 The [ZooKeeper documentation](https://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_supervision) 
 documentation indicates that "You will want to have a supervisory process that 
@@ -783,7 +783,7 @@ common pattern. When deploying an application in Kubernetes, rather than using
 an external utility as a supervisory process, you should use Kubernetes as the 
 watchdog for your application.
 
-#### Handling Process Failure 
+### Handling Process Failure 
 
 
 [Restart Policies](/docs/user-guide/pod-states/#restartpolicy) control how 
@@ -846,7 +846,7 @@ child process. This ensures that Kubernetes will restart the application's
 container when the process implementing the application's business logic fails. 
 
 
-#### Testing for Liveness
+### Testing for Liveness
 
 
 Configuring your application to restart failed processes is not sufficient to 
@@ -918,7 +918,7 @@ zk-0      1/1       Running   1         1h
 ```
 
 
-#### Testing for Readiness
+### Testing for Readiness
 
 
 Readiness is not the same as liveness. If a process is alive, it is scheduled 
@@ -951,7 +951,7 @@ to specify both. This ensures that only healthy servers in the ZooKeeper
 ensemble receive network traffic.
 
 
-### Tolerating Node Failure
+## Tolerating Node Failure
 
 ZooKeeper needs a quorum of servers in order to successfully commit mutations 
 to data. For a three server ensemble, two servers must be healthy in order for 
@@ -1013,7 +1013,7 @@ Service in the domain defined by the `topologyKey`. The `topologyKey`
 different rules, labels, and selectors, you can extend this technique to spread 
 your ensemble across physical, network, and power failure domains.
 
-### Surviving Maintenance
+## Surviving Maintenance
 
 **In this section you will cordon and drain nodes. If you are using this tutorial
 on a shared cluster, be sure that this will not adversely affect other tenants.**
diff --git a/docs/tutorials/stateless-application/expose-external-ip-address-service.md b/docs/tutorials/stateless-application/expose-external-ip-address-service.md
index 23bffda9df..f4a63b1e31 100644
--- a/docs/tutorials/stateless-application/expose-external-ip-address-service.md
+++ b/docs/tutorials/stateless-application/expose-external-ip-address-service.md
@@ -29,7 +29,7 @@ provides load balancing for an application that has two running instances.
 
 {% capture lessoncontent %}
 
-### Creating a service for an application running in two pods
+## Creating a service for an application running in two pods
 
 1. Run a Hello World application in your cluster:
 
@@ -111,7 +111,7 @@ provides load balancing for an application that has two running instances.
 
         Hello Kubernetes!
 
-### Using a service configuration file
+## Using a service configuration file
 
 As an alternative to using `kubectl expose`, you can use a
 [service configuration file](/docs/user-guide/services/operations)
diff --git a/docs/tutorials/stateless-application/expose-external-ip-address.md b/docs/tutorials/stateless-application/expose-external-ip-address.md
index f21abf7e61..665a06a2b0 100644
--- a/docs/tutorials/stateless-application/expose-external-ip-address.md
+++ b/docs/tutorials/stateless-application/expose-external-ip-address.md
@@ -36,7 +36,7 @@ external IP address.
 
 {% capture lessoncontent %}
 
-### Creating a service for an application running in five pods
+## Creating a service for an application running in five pods
 
 1. Run a Hello World application in your cluster:
 
diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md
index 4f75960b4e..9e6a93e5c3 100644
--- a/docs/tutorials/stateless-application/hello-minikube.md
+++ b/docs/tutorials/stateless-application/hello-minikube.md
@@ -38,7 +38,7 @@ driver.
 
 {% capture lessoncontent %}
 
-### Create a Minikube cluster
+## Create a Minikube cluster
 
 This tutorial uses [Minikube](https://github.com/kubernetes/minikube) to
 create a local cluster. This tutorial also assumes you are using
@@ -94,7 +94,7 @@ Verify that `kubectl` is configured to communicate with your cluster:
 kubectl cluster-info
 ```
 
-### Create your Node.js application
+## Create your Node.js application
 
 The next step is to write the application. Save this code in a folder named `hellonode`
 with the filename `server.js`:
@@ -113,7 +113,7 @@ Stop the running Node.js server by pressing **Ctrl-C**.
 
 The next step is to package your application in a Docker container.
 
-### Create a Docker container image
+## Create a Docker container image
 
 Create a file, also in the `hellonode` folder, named `Dockerfile`. A Dockerfile describes
 the image that you want to build. You can build a Docker container image by extending an
@@ -145,7 +145,7 @@ docker build -t hello-node:v1 .
 
 Now the Minikube VM can run the image you built.
 
-### Create a Deployment
+## Create a Deployment
 
 A Kubernetes [*Pod*](/docs/user-guide/pods/) is a group of one or more Containers,
 tied together for the purposes of administration and networking. The Pod in this
@@ -206,7 +206,7 @@ kubectl config view
 For more information about `kubectl`commands, see the
 [kubectl overview](/docs/user-guide/kubectl-overview/).
 
-### Create a Service
+## Create a Service
 
 By default, the Pod is only accessible by its internal IP address within the
 Kubernetes cluster. To make the `hello-node` Container accessible from outside the
@@ -254,7 +254,7 @@ you should now be able to see some logs:
 kubectl logs 
 ```
 
-### Update your app
+## Update your app
 
 Edit your `server.js` file to return a new message:
 
@@ -281,7 +281,7 @@ Run your app again to view the new message:
 minikube service hello-node
 ```
 
-### Clean up
+## Clean up
 
 Now you can clean up the resources you created in your cluster:
 
diff --git a/docs/tutorials/stateless-application/run-stateless-application-deployment.md b/docs/tutorials/stateless-application/run-stateless-application-deployment.md
index 06ccc74579..8e3d725752 100644
--- a/docs/tutorials/stateless-application/run-stateless-application-deployment.md
+++ b/docs/tutorials/stateless-application/run-stateless-application-deployment.md
@@ -27,7 +27,7 @@ This page shows how to run an application using a Kubernetes Deployment object.
 
 {% capture lessoncontent %}
 
-### Creating and exploring an nginx deployment
+## Creating and exploring an nginx deployment
 
 You can run an application by creating a Kubernetes Deployment object, and you
 can describe a Deployment in a YAML file. For example, this YAML file describes
@@ -72,7 +72,7 @@ a Deployment that runs the nginx:1.7.9 Docker image:
 
     where `` is the name of one of your pods.
 
-### Updating the deployment
+## Updating the deployment
 
 You can update the deployment by applying a new YAML file. This YAML file
 specifies that the deployment should be updated to use nginx 1.8.
@@ -87,7 +87,7 @@ specifies that the deployment should be updated to use nginx 1.8.
 
         kubectl get pods -l app=nginx
 
-### Scaling the application by increasing the replica count
+## Scaling the application by increasing the replica count
 
 You can increase the number of pods in your Deployment by applying a new YAML
 file. This YAML file sets `replicas` to 4, which specifies that the Deployment
@@ -111,7 +111,7 @@ should have four pods:
         nginx-deployment-148880595-fxcez   1/1       Running   0          2m
         nginx-deployment-148880595-rwovn   1/1       Running   0          2m
 
-### Deleting a deployment
+## Deleting a deployment
 
 Delete the deployment by name:
 

From 8f37b020b0042a52493169f1ba0954c41446f611 Mon Sep 17 00:00:00 2001
From: Oskar Pearson 
Date: Thu, 19 Jan 2017 07:32:39 +0000
Subject: [PATCH 067/132] Replace Kubectl instructions with reference to
 authoritative page

This page previously included instructions to use curl to download and install
Kubectl via http, rather than with https. This exposed the end user to
man-in-the-middle attacks.

Additionally, the instructions given here are slightly different from the
authoritative page at https://kubernetes.io/docs/getting-started-guides/kubectl/
- which covers useful things like getting the latest release and setting up tab
autocompletion.

Rather than just change 'http' to 'https' in the URLs here, I've updated the
minikube setup page to include a reference to the kubectl setup page.
---
 docs/getting-started-guides/minikube.md | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md
index a6fc28bfb0..49a64269bd 100644
--- a/docs/getting-started-guides/minikube.md
+++ b/docs/getting-started-guides/minikube.md
@@ -31,19 +31,7 @@ Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a
 * Linux
     * [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [KVM](http://www.linux-kvm.org/) installation,
 * VT-x/AMD-v virtualization must be enabled in BIOS
-* `kubectl` must be on your path. To install kubectl:
-
-**Kubectl for Linux/amd64**
-
-```
-curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page.version}}/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
-```
-
-**Kubectl for OS X/amd64**
-
-```
-curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page.version}}/bin/darwin/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
-```
+* `kubectl` See the [kubectl installation instructions](/docs/getting-started-guides/kubectl/) for more details.
 
 ### Instructions
 
@@ -175,7 +163,7 @@ This flag is repeated, so you can pass it several times with several different v
 This flag takes a string of the form `component.key=value`, where `component` is one of the strings from the above list, `key` is a value on the
 configuration struct and `value` is the value to set.
 
-Valid `key`s can be found by examining the documentation for the Kubernetes `componentconfigs` for each component. 
+Valid `key`s can be found by examining the documentation for the Kubernetes `componentconfigs` for each component.
 Here is the documentation for each supported configuration:
 
 * [kubelet](https://godoc.org/k8s.io/kubernetes/pkg/apis/componentconfig#KubeletConfiguration)
@@ -191,7 +179,7 @@ To change the `MaxPods` setting to 5 on the Kubelet, pass this flag: `--extra-co
 
 This feature also supports nested structs. To change the `LeaderElection.LeaderElect` setting to `true` on the scheduler, pass this flag: `--extra-config=scheduler.LeaderElection.LeaderElect=true`.
 
-To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.AuthorizationMode=RBAC`. 
+To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.AuthorizationMode=RBAC`.
 
 ### Stopping a Cluster
 The [minikube stop](https://github.com/kubernetes/minikube/blob/master/docs/minikube_stop.md) command can be used to stop your cluster.

From 354ba657039f2d6b423ee09bb3bd6c8293b55f4b Mon Sep 17 00:00:00 2001
From: euan-am 
Date: Thu, 19 Jan 2017 10:09:51 +0200
Subject: [PATCH 068/132] Port-forward to local port documentation fix

The port-forward command was incorrect for the documentation description for forwarding a local port to a pod
---
 docs/user-guide/kubectl-cheatsheet.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/user-guide/kubectl-cheatsheet.md b/docs/user-guide/kubectl-cheatsheet.md
index c16e7c264d..c147304a7d 100644
--- a/docs/user-guide/kubectl-cheatsheet.md
+++ b/docs/user-guide/kubectl-cheatsheet.md
@@ -200,7 +200,7 @@ $ kubectl logs my-pod                                 # dump pod logs (stdout)
 $ kubectl logs -f my-pod                              # stream pod logs (stdout)
 $ kubectl run -i --tty busybox --image=busybox -- sh  # Run pod as interactive shell
 $ kubectl attach my-pod -i                            # Attach to Running Container
-$ kubectl port-forward my-pod 5000 6000               # Forward port 6000 of Pod to your to 5000 on your local machine
+$ kubectl port-forward my-pod 5000:6000               # Forward port 6000 of Pod to your to 5000 on your local machine
 $ kubectl port-forward my-svc 6000                    # Forward port to service
 $ kubectl exec my-pod -- ls /                         # Run command in existing pod (1 container case)
 $ kubectl exec my-pod -c my-container -- ls /         # Run command in existing pod (multi-container case)

From 1a0e15c915960e392d407c50aaadff43e704c68d Mon Sep 17 00:00:00 2001
From: Matt Rickard 
Date: Thu, 19 Jan 2017 10:17:23 -0800
Subject: [PATCH 069/132] Change reviewers of minikube to r2d4 and aprindle

---
 docs/getting-started-guides/minikube.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md
index a6fc28bfb0..9a4d06e210 100644
--- a/docs/getting-started-guides/minikube.md
+++ b/docs/getting-started-guides/minikube.md
@@ -1,8 +1,8 @@
 ---
 assignees:
 - dlorenc
-- janetkuo
-- jlowdermilk
+- r2d4 
+- aaron-prindle
 title: Running Kubernetes Locally via Minikube
 ---
 

From 01d3ade5397e7b6695236804d53ed395a46ecaab Mon Sep 17 00:00:00 2001
From: steveperry-53 
Date: Thu, 19 Jan 2017 14:37:45 -0800
Subject: [PATCH 070/132] Update headings and guidance about headings.

---
 _data/support.yml                             | 23 +++++------
 docs/contribute/create-pull-request.md        | 10 ++---
 docs/contribute/page-templates.md             | 33 ++++++++++-----
 docs/contribute/review-issues.md              | 34 ++++++++--------
 .../contribute/stage-documentation-changes.md |  8 ++--
 docs/contribute/style-guide.md                | 40 +++++++++----------
 docs/contribute/write-new-topic.md            | 18 ++++-----
 7 files changed, 89 insertions(+), 77 deletions(-)

diff --git a/_data/support.yml b/_data/support.yml
index c25faa70f8..a6b13e9d09 100644
--- a/_data/support.yml
+++ b/_data/support.yml
@@ -3,17 +3,6 @@ abstract: "Troubleshooting resources, frequently asked questions, and community
 toc:
 - docs/troubleshooting.md
 
-- title: Contributing to the Kubernetes Docs
-  section:
-  - editdocs.md
-  - docs/contribute/create-pull-request.md
-  - docs/contribute/write-new-topic.md
-  - docs/contribute/stage-documentation-changes.md
-  - docs/contribute/page-templates.md
-  - docs/contribute/review-issues.md
-  - docs/contribute/style-guide.md
-
-
 - title: Troubleshooting
   section:
   - docs/user-guide/debugging-pods-and-replication-controllers.md
@@ -31,6 +20,16 @@ toc:
   - title: Services FAQ
     path: https://github.com/kubernetes/kubernetes/wiki/Services-FAQ/
 
+- title: Contributing to the Kubernetes Docs
+  section:
+  - editdocs.md
+  - docs/contribute/create-pull-request.md
+  - docs/contribute/write-new-topic.md
+  - docs/contribute/stage-documentation-changes.md
+  - docs/contribute/page-templates.md
+  - docs/contribute/review-issues.md
+  - docs/contribute/style-guide.md
+
 - title: Other Resources
   section:
   - title: Kubernetes Issue Tracker on GitHub
@@ -40,6 +39,6 @@ toc:
     path: https://github.com/kubernetes/kubernetes/releases/
   - title: Release Roadmap
     path: https://github.com/kubernetes/kubernetes/milestones/
-  
+
 - title: Deprecation Policy
   path: /docs/deprecation-policy.md
diff --git a/docs/contribute/create-pull-request.md b/docs/contribute/create-pull-request.md
index 4637c0b066..7ed2b2b953 100644
--- a/docs/contribute/create-pull-request.md
+++ b/docs/contribute/create-pull-request.md
@@ -23,7 +23,7 @@ Documentation will be published under the [CC BY SA 4.0](https://github.com/kube
 
 {% capture steps %}
 
-### Creating a fork of the Kubernetes documentation repository
+## Creating a fork of the Kubernetes documentation repository
 
 1. Go to the
 [kubernetes/kubernetes.github.io](https://github.com/kubernetes/kubernetes.github.io){: target="_blank"}
@@ -33,18 +33,18 @@ repository.
 Kubernetes documentation repository in your GitHub account. The copy
 is called a *fork*.
 
-### Making your changes
+## Making your changes
 
 1. In your GitHub account, in your fork of the Kubernetes docs, create
 a new branch to use for your contribution.
 
-1. In your new branch, make your changes and commit them. If you want to 
+1. In your new branch, make your changes and commit them. If you want to
 [write a new topic](/docs/contribute/write-new-topic/),
 choose the
 [page type](/docs/contribute/page-templates/)
 that is the best fit for your content.
 
-### Submitting a pull request to the master branch (Current Release)
+## Submitting a pull request to the master branch (Current Release)
 
 If you want your change to be published in the released version Kubernetes docs,
 create a pull request against the master branch of the Kubernetes
@@ -62,7 +62,7 @@ site where you can verify that your changes have rendered correctly.
 If needed, revise your pull request by committing changes to your
 new branch in your fork.
 
-### Submitting a pull request to the <vnext> branch (Upcoming Release)
+## Submitting a pull request to the <vnext> branch (Upcoming Release)
 
 If your documentation change should not be released until the next release of
 the Kubernetes product, create a pull request against the <vnext> branch
diff --git a/docs/contribute/page-templates.md b/docs/contribute/page-templates.md
index 93fa03a6bb..0dfb600896 100644
--- a/docs/contribute/page-templates.md
+++ b/docs/contribute/page-templates.md
@@ -18,7 +18,7 @@ title: Using Page Templates
 
 

The page templates are in the _includes/templates directory of the kubernetes.github.io repository. -

Task template

+

Task template

A task page shows how to do a single thing, typically by giving a short sequence of steps. Task pages have minimal explanation, but often provide links @@ -36,10 +36,15 @@ variables, and then include templates/task.md:

  • whatsnext - optional
  • +

    In the steps section, use ## to start with a level-two heading. For subheadings, +use ### and #### as needed. Similarly, if you choose to have a discussion section, +start the section with a level-two heading.

    +

    Here's an example of a Markdown file that uses the task template:

    {% raw %}
    ---
    +title: Configuring This Thing
     ---
     
     {% capture overview %}
    @@ -52,14 +57,14 @@ This page shows how to ...
     {% endcapture %}
     
     {% capture steps %}
    -### Doing ...
    +## Doing ...
     
     1. Do this.
     1. Do this next. Possibly read this [related explanation](...).
     {% endcapture %}
     
     {% capture discussion %}
    -### Understanding ...
    +## Understanding ...
     
     Here's an interesting thing to know about the steps you just did.
     {% endcapture %}
    @@ -77,7 +82,7 @@ Here's an interesting thing to know about the steps you just did.
     
     

    Using an HTTP Proxy to Access the Kubernetes API

    -

    Tutorial template

    +

    Tutorial template

    A tutorial page shows how to accomplish a goal that is larger than a single task. Typically a tutorial page has several sections, each of which has a @@ -99,10 +104,14 @@ variables, and then include templates/tutorial.md:

  • whatsnext - optional
  • +

    In the lessoncontent section, use ## to start with a level-two heading. For subheadings, +use ### and #### as needed. +

    Here's an example of a Markdown file that uses the tutorial template:

    {% raw %}
    ---
    +title: Running a Thing
     ---
     
     {% capture overview %}
    @@ -121,17 +130,17 @@ This page shows how to ...
     {% endcapture %}
     
     {% capture lessoncontent %}
    -### Building ...
    +## Building ...
     
     1. Do this.
     1. Do this next. Possibly read this [related explanation](...).
     
    -### Running ...
    +## Running ...
     
     1. Do this.
     1. Do this next.
     
    -### Understanding the code
    +## Understanding the code
     Here's something interesting about the code you ran in the preceding steps.
     {% endcapture %}
     
    @@ -153,7 +162,7 @@ Here's something interesting about the code you ran in the preceding steps.
     
     

    Running a Stateless Application Using a Deployment

    -

    Concept template

    +

    Concept template

    A concept page explains some aspect of Kubernetes. For example, a concept page might describe the Kubernetes Deployment object and explain the role it @@ -171,10 +180,14 @@ variables, and then include templates/concept.md:

  • whatsnext - optional
  • +

    In the body section, use ## to start with a level-two heading. For subheadings, +use ### and #### as needed. +

    Here's an example of a page that uses the concept template:

    {% raw %}
    ---
    +title: Understanding this Thing
     ---
     
     {% capture overview %}
    @@ -182,11 +195,11 @@ This page explains ...
     {% endcapture %}
     
     {% capture body %}
    -### Understanding ...
    +## Understanding ...
     
     Kubernetes provides ...
     
    -### Using ...
    +## Using ...
     
     To use ...
     {% endcapture %}
    diff --git a/docs/contribute/review-issues.md b/docs/contribute/review-issues.md
    index 8b16d450c6..e9c13988b5 100644
    --- a/docs/contribute/review-issues.md
    +++ b/docs/contribute/review-issues.md
    @@ -9,50 +9,50 @@ This page explains how you should review and prioritize documentation issues mad
     
     {% capture body %}
     
    -### Categorizing issues
    -Issues should be sorted into different buckets of work using the following labels and definitions. If an issue doesn't have enough information to identify a problem that can be researched, reviewed, or worked on (i.e. the issue doesn't fit into any of the categories below) you should close the issue with a comment explaining why it is being closed.  
    +## Categorizing issues
    +Issues should be sorted into different buckets of work using the following labels and definitions. If an issue doesn't have enough information to identify a problem that can be researched, reviewed, or worked on (i.e. the issue doesn't fit into any of the categories below) you should close the issue with a comment explaining why it is being closed.
     
     
    -#### Actionable 
    +### Actionable
     * Issues that can be worked on with current information (or may need a comment to explain what needs to be done to make it more clear)
    -* Allows contributors to have easy to find issues to work on 
    +* Allows contributors to have easy to find issues to work on
     
     
    -#### Needs Tech Review 
    +### Needs Tech Review
     * Issues that need more information in order to be worked on (the proposed solution needs to be proven, a subject matter expert needs to be involved, work needs to be done to understand the problem/resolution and if the issue is still relevant)
    -* Promotes transparency about level of work needed for the issue and that issue is in progress 
    +* Promotes transparency about level of work needed for the issue and that issue is in progress
     
    -#### Needs Docs Review
    +### Needs Docs Review
     * Issues that are suggestions for better processes or site improvements that require community agreement to be implemented
     * Topics can be brought to SIG meetings as agenda items
     
     
    -### Prioritizing Issues
    -The following labels and definitions should be used to prioritize issues. If you change the priority of an issues, please comment on the issue with your reasoning for the change.   
    +## Prioritizing Issues
    +The following labels and definitions should be used to prioritize issues. If you change the priority of an issues, please comment on the issue with your reasoning for the change.
     
    -#### P1
    +### P1
     * Major content errors affecting more than 1 page
     * Broken code sample on a heavily trafficked page
     * Errors on a “getting started” page
     * Well known or highly publicized customer pain points
     * Automation issues
     
    -#### P2
    +### P2
     * Default for all new issues
     * Broken code for sample that is not heavily used
     * Minor content issues in a heavily trafficked page
    -* Major content issues on a lower-trafficked page 
    +* Major content issues on a lower-trafficked page
     
    -#### P3
    +### P3
     * Typos and broken anchor links
     
    -### Handling special issue types
    +## Handling special issue types
     
    -#### Duplicate issues
    +### Duplicate issues
     If a single problem has one or more issues open for it, the problem should be consolodated into a single issue. You should decide which issue to keep open (or open a new issue), port over all relevant information, link related issues, and close all the other issues that describe the same problem. Only having a single issue to work on will help reduce confusion and avoid duplicating work on the same problem.
     
    -#### Dead link issues
    -Depending on where the dead link is reported, different actions are required to resolve the issue. Dead links in the API and Kubectl docs are automation issues and should be assigned a P1 until the problem can be fully understood. All other dead links are issues that need to be manually fixed and can be assigned a P3. 
    +### Dead link issues
    +Depending on where the dead link is reported, different actions are required to resolve the issue. Dead links in the API and Kubectl docs are automation issues and should be assigned a P1 until the problem can be fully understood. All other dead links are issues that need to be manually fixed and can be assigned a P3.
     
     {% endcapture %}
     
    diff --git a/docs/contribute/stage-documentation-changes.md b/docs/contribute/stage-documentation-changes.md
    index 50e22a1b8b..452c38170c 100644
    --- a/docs/contribute/stage-documentation-changes.md
    +++ b/docs/contribute/stage-documentation-changes.md
    @@ -14,7 +14,7 @@ Create a fork of the Kubernetes documentation repository as described in
     
     {% capture steps %}
     
    -### Staging from your GitHub account
    +## Staging from your GitHub account
     
     GitHub provides staging of content in your master branch. Note that you
     might not want to merge your changes into your master branch. If that is
    @@ -32,7 +32,7 @@ the master branch.
     
             https://.github.io
     
    -### Staging a pull request
    +## Staging a pull request
     
     When you create a pull request, either against the master or <vnext>
     branch, your changes are staged in a custom subdomain on Netlify so that
    @@ -47,7 +47,7 @@ Wait for the **deploy/netlify** check to complete. To the right of
     **deploy/netlify**, click **Details**. This opens a staging site where you
     can see your changes.
     
    -### Staging locally using Docker
    +## Staging locally using Docker
     
     You can use the k8sdocs Docker image to run a local staging server. If you're
     interested, you can view the
    @@ -66,7 +66,7 @@ web server:
     1. View your staged content at
     [http://localhost:4000](http://localhost:4000){: target="_blank"}.
     
    -### Staging locally without Docker
    +## Staging locally without Docker
     
     1. [Install Ruby 2.2 or later](https://www.ruby-lang.org){: target="_blank"}.
     
    diff --git a/docs/contribute/style-guide.md b/docs/contribute/style-guide.md
    index 47d3cd75c0..6bb1aa5837 100644
    --- a/docs/contribute/style-guide.md
    +++ b/docs/contribute/style-guide.md
    @@ -15,9 +15,9 @@ docs, follow the instructions on
     
     {% capture body %}
     
    -### Documentation formatting standards
    +## Documentation formatting standards
     
    -#### Use Camel Case for API objects
    +### Use Camel Case for API objects
     
     When you refer to an API object, use the same uppercase and lowercase letters
     that are used in the actual object name. Typically, the names of API
    @@ -39,7 +39,7 @@ leads to an awkward construction.
       The two ContainerStateTerminated objects ...The two ContainerStateTerminateds ...
     
     
    -#### Use angle brackets for placeholders
    +### Use angle brackets for placeholders
     
     Use angle brackets for placeholders. Tell the reader what a placeholder
     represents.
    @@ -50,7 +50,7 @@ represents.
     
         where `` is the name of one of your pods.
     
    -#### Use bold for user interface elements
    +### Use bold for user interface elements
     
     
    @@ -58,7 +58,7 @@ represents.
       
    DoDon't
    Select Other.Select 'Other'.
    -#### Use italics to define or introduce new terms +### Use italics to define or introduce new terms @@ -66,7 +66,7 @@ represents.
    DoDon't
    These components form the control plane.These components form the control plane.
    -#### Use code style for filenames, directories, and paths +### Use code style for filenames, directories, and paths @@ -75,9 +75,9 @@ represents.
    DoDon't
    Open the /_data/concepts.yaml file.Open the /_data/concepts.yaml file.
    -### Code snippet formatting +## Code snippet formatting -#### Use code style for inline code and commands +### Use code style for inline code and commands For inline code in an HTML document, use the `` tag. In a Markdown document, use the backtick (`). @@ -88,14 +88,14 @@ document, use the backtick (`). The kubectl run command creates a Deployment.The "kubectl run" command creates a Deployment. -#### Don't include the command prompt +### Don't include the command prompt
    DoDon't
    kubectl get pods$ kubectl get pods
    -#### Separate commands from output +### Separate commands from output Verify that the pod is running on your chosen node: @@ -117,11 +117,11 @@ A list of Kubernetes-specific terms and words to be used consistently across the {% endcomment %} -### Content best practices +## Content best practices This section contains suggested best practices for clear, concise, and consistent content. -#### Use present tense +### Use present tense @@ -131,7 +131,7 @@ This section contains suggested best practices for clear, concise, and consisten Exception: Use future or past tense if it is required to convey the correct meaning. -#### Use active voice +### Use active voice
    DoDon't
    @@ -141,7 +141,7 @@ meaning. Exception: Use passive voice if active voice leads to an awkward construction. -#### Use simple and direct language +### Use simple and direct language Use simple and direct language. Avoid using unnecessary phrases, such as saying "please." @@ -153,7 +153,7 @@ Use simple and direct language. Avoid using unnecessary phrases, such as saying
    DoDon't
    -#### Address the reader as "you" +### Address the reader as "you" @@ -161,9 +161,9 @@ Use simple and direct language. Avoid using unnecessary phrases, such as saying
    DoDon't
    In the preceding output, you can see...In the preceding output, we can see ...
    -### Patterns to avoid +## Patterns to avoid -#### Avoid using "we" +### Avoid using "we" Using "we" in a sentence can be confusing, because the reader might not know whether they're part of the "we" you're describing. @@ -175,7 +175,7 @@ whether they're part of the "we" you're describing. This page teaches you how to use pods.In this page, we are going to learn about pods. -#### Avoid jargon and idioms +### Avoid jargon and idioms Some readers speak English as a second language. Avoid jargon and idioms to help make their understanding easier. @@ -185,13 +185,13 @@ Some readers speak English as a second language. Avoid jargon and idioms to help Create a new cluster.Turn up a new cluster. -#### Avoid statements about the future +### Avoid statements about the future Avoid making promises or giving hints about the future. If you need to talk about an alpha feature, put the text under a heading that identifies it as alpha information. -#### Avoid statements that will soon be out of date +### Avoid statements that will soon be out of date Avoid words like "currently" and "new." A feature that is new today might not be considered new in a few months. diff --git a/docs/contribute/write-new-topic.md b/docs/contribute/write-new-topic.md index 3ecae45674..52256390da 100644 --- a/docs/contribute/write-new-topic.md +++ b/docs/contribute/write-new-topic.md @@ -13,7 +13,7 @@ Create a fork of the Kubernetes documentation repository as described in {% capture steps %} -### Choosing a page type +## Choosing a page type As you prepare to write a new topic, think about which of these page types is the best fit for your content: @@ -42,7 +42,7 @@ Each page type has a that you can use as you write your topic. Using templates helps ensure consistency among topics of a given type. -### Choosing a title and filename +## Choosing a title and filename Choose a title that has the keywords you want search engines to find. Create a filename that uses the words in your title separated by hyphens. @@ -54,18 +54,18 @@ URL for the topic, for example: http://kubernetes.io/docs/tasks/access-kubernetes-api/http-proxy-access-api/ -### Adding the topic title to the front matter +## Adding the topic title to the front matter In your topic, put a `title` field in the [front matter](https://jekyllrb.com/docs/frontmatter/). -The front matter is the YAML block that is between the +The front matter is the YAML block that is between the triple-dashed lines at the top of the page. Here's an example: --- title: Using an HTTP Proxy to Access the Kubernetes API --- -### Choosing a directory +## Choosing a directory Depending on your page type, put your new file in a subdirectory of one of these: @@ -76,7 +76,7 @@ Depending on your page type, put your new file in a subdirectory of one of these You can put your file in an existing subdirectory, or you can create a new subdirectory. -### Creating an entry in the table of contents +## Creating an entry in the table of contents Depending page type, create an entry in one of these files: @@ -88,7 +88,7 @@ Here's an example of an entry in /_data/tasks.yaml: - docs/tasks/configure-pod-container/configure-volume-storage.md -### Including code from another file +## Including code from another file To include a code file in your topic, place the code file in the Kubernetes documentation repository, preferably in the same directory as your topic @@ -107,7 +107,7 @@ Here's an example of using the `include` tag:
    {% include code.html language="yaml" file="gce-volume.yaml" ghlink="/docs/tutorials/stateful-application/gce-volume.yaml" %}
    -### Showing how to create an API object from a configuration file +## Showing how to create an API object from a configuration file If you need to show the reader how to create an API object based on a configuration file, place the configuration file in the Kubernetes documentation @@ -127,7 +127,7 @@ Here's an example of a command that creates an API object from a configuration f For an example of a topic that uses this technique, see [Running a Single-Instance Stateful Application](/docs/tutorials/stateful-application/run-stateful-application/). -### Adding images to a topic +## Adding images to a topic Put image files in the `/images` directory. The preferred image format is SVG. From 21e74e1e122d18f1af3cf66cc1d2b4aaa488ba3d Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 19 Jan 2017 15:19:01 -0800 Subject: [PATCH 071/132] Fix API Group for some resources on resource reference-docs --- docs/resources-reference/v1.5/index.html | 50 ++++++++++++------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/resources-reference/v1.5/index.html b/docs/resources-reference/v1.5/index.html index 688ce5a06e..c3902110de 100644 --- a/docs/resources-reference/v1.5/index.html +++ b/docs/resources-reference/v1.5/index.html @@ -202,7 +202,7 @@ Appears In PodStatus -Core +Batch v2alpha1 CronJob @@ -373,7 +373,7 @@ Appears In CronJob -Core +Extensions v1beta1 DaemonSet @@ -530,7 +530,7 @@ Appears In DaemonSet -Core +Extensions v1beta1 Deployment @@ -794,7 +794,7 @@ apiVersion: batch/v1 -Core +Batch v1 Job @@ -1201,7 +1201,7 @@ Appears In Pod -Core +Extensions v1beta1 ReplicaSet @@ -1529,7 +1529,7 @@ Appears In ReplicationController -Core +Apps v1beta1 StatefulSet @@ -1766,7 +1766,7 @@ Appears In EndpointsList -Core +Extensions v1beta1 Ingress @@ -2371,7 +2371,7 @@ Appears In PersistentVolumeClaim -Core +Storage v1beta1 StorageClass @@ -2788,7 +2788,7 @@ Appears In LimitRange -Core +Autoscaling v1 HorizontalPodAutoscaler @@ -3031,7 +3031,7 @@ Appears In DaemonSetSpec PodDisruptionBudget -Core +Extensions v1beta1 ThirdPartyResource @@ -3297,7 +3297,7 @@ Appears In ThirdPartyResourceList -Core +Certificates v1alpha1 CertificateSigningRequest @@ -3428,7 +3428,7 @@ Appears In CertificateSigningReque -Core +RbacAuthorization v1alpha1 ClusterRole @@ -3503,7 +3503,7 @@ Appears In ClusterRoleList -Core +RbacAuthorization v1alpha1 ClusterRoleBinding @@ -3657,7 +3657,7 @@ Appears In ComponentStatusList -Core +Authorization v1beta1 LocalSubjectAccessReview @@ -4315,7 +4315,7 @@ Appears In ResourceQuota -Core +RbacAuthorization v1alpha1 Role @@ -4390,7 +4390,7 @@ Appears In RoleList -Core +RbacAuthorization v1alpha1 RoleBinding @@ -4469,7 +4469,7 @@ Appears In RoleBindingList -Core +Authorization v1beta1 SelfSubjectAccessReview @@ -4619,7 +4619,7 @@ Appears In ServiceAccountList -Core +Authorization v1beta1 SubjectAccessReview @@ -4728,7 +4728,7 @@ Appears In LocalSubjectAccessReview< -Core +Authentication v1beta1 TokenReview @@ -4821,7 +4821,7 @@ Appears In TokenReview -Core +Extensions v1beta1 NetworkPolicy @@ -10173,7 +10173,7 @@ Appears In PersistentVolumeSpec -Core +Extensions v1beta1 HorizontalPodAutoscaler @@ -10319,7 +10319,7 @@ Appears In HorizontalPodAutoscaler -Core +Extensions v1beta1 Job @@ -10477,7 +10477,7 @@ Appears In Job -Core +Batch v2alpha1 Job @@ -10846,4 +10846,4 @@ Appears In Scale - + \ No newline at end of file From 503ddad7a37bed80fdcac32174c05061b7ba4817 Mon Sep 17 00:00:00 2001 From: scjane Date: Fri, 20 Jan 2017 11:26:02 +0800 Subject: [PATCH 072/132] Update quick-start.md --- docs/user-guide/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/quick-start.md b/docs/user-guide/quick-start.md index 78e43eb1ce..6ad7940526 100644 --- a/docs/user-guide/quick-start.md +++ b/docs/user-guide/quick-start.md @@ -22,7 +22,7 @@ $ kubectl run my-nginx --image=nginx --replicas=2 --port=80 deployment "my-nginx" created ``` -To expose your service to the public internet, run: +To expose your service to the public Internet, run: ```shell $ kubectl expose deployment my-nginx --target-port=80 --type=LoadBalancer @@ -49,7 +49,7 @@ NAME CLUSTER_IP EXTERNAL_IP PORT(S) AGE my-nginx 10.179.240.1 25.1.2.3 80/TCP 8s ``` -You may need to wait for a minute or two for the external ip address to be provisioned. +You may need to wait for a minute or two for the external IP address to be provisioned. In order to access your nginx landing page, you also have to make sure that traffic from external IPs is allowed. Do this by opening a [firewall to allow traffic on port 80](/docs/user-guide/services-firewalls). From 1c6d3b40d904bcb9520b9ef363069adddc890b3a Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 19 Jan 2017 20:29:59 -0800 Subject: [PATCH 073/132] Fix issue with "Status" operations not showing up for some resource types. --- docs/api-reference/v1.5/index.html | 6134 +++++++++++++++++++++++++--- docs/api-reference/v1.5/navData.js | 2 +- 2 files changed, 5657 insertions(+), 479 deletions(-) diff --git a/docs/api-reference/v1.5/index.html b/docs/api-reference/v1.5/index.html index a665a89afe..84caadbe95 100644 --- a/docs/api-reference/v1.5/index.html +++ b/docs/api-reference/v1.5/index.html @@ -11,7 +11,7 @@ - +
    • kubectl
    • curl

    API OVERVIEW

    @@ -2779,7 +2779,100 @@ $ curl -X GET http:// -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of DaemonSet

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -2857,9 +2950,9 @@ $ curl -X GET http:// -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -2951,7 +3044,7 @@ $ curl -X GET http:// -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -3028,7 +3121,7 @@ $ curl -X GET http:// -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -3414,9 +3507,9 @@ Appears In DeploymentStrategy -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -3601,7 +3694,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -3795,7 +3888,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -3960,7 +4053,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Delete +

    Delete

    kubectl Command

    @@ -4070,7 +4163,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -4163,9 +4256,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -4387,7 +4480,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -4761,7 +4854,7 @@ $ kubectl get deployment -o json -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -4839,7 +4932,7 @@ $ kubectl get deployment -o json -

    Watch

    +

    Watch

    kubectl Command

    @@ -5083,7 +5176,7 @@ $ kubectl get deployment deployment-example -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -5176,7 +5269,7 @@ $ kubectl get deployment deployment-example -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -5254,9 +5347,9 @@ $ kubectl get deployment deployment-example -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -5348,7 +5441,7 @@ $ kubectl get deployment deployment-example -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -5425,7 +5518,7 @@ $ kubectl get deployment deployment-example -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -6074,9 +6167,9 @@ Appears In Job -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -6246,7 +6339,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -6338,7 +6431,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -6430,7 +6523,7 @@ spec: -

    Delete

    +

    Delete

    kubectl Command

    @@ -6540,7 +6633,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -6633,9 +6726,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -6831,7 +6924,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -7051,7 +7144,7 @@ $ kubectl get job -o json -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -7129,7 +7222,7 @@ $ kubectl get job -o json -

    Watch

    +

    Watch

    kubectl Command

    @@ -7347,7 +7440,7 @@ $ kubectl get job example-job Watch List +

    Watch List

    kubectl Command

    @@ -7440,7 +7533,7 @@ $ kubectl get job example-job Watch List All Namespaces +

    Watch List All Namespaces

    kubectl Command

    @@ -7518,6 +7611,269 @@ $ kubectl get job example-job Status Operations +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Job

    +

    HTTP Request

    +

    PATCH /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Job

    +

    HTTP Request

    +

    GET /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Job

    +

    HTTP Request

    +

    PUT /apis/batch/v1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Job
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK

    Pod v1

    @@ -7759,9 +8115,9 @@ Appears In Pod -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -7849,7 +8205,7 @@ Appears In Pod -

    Replace

    +

    Replace

    kubectl Command

    @@ -7941,7 +8297,7 @@ Appears In Pod -

    Patch

    +

    Patch

    kubectl Command

    @@ -8033,7 +8389,7 @@ Appears In Pod -

    Delete

    +

    Delete

    kubectl Command

    @@ -8133,7 +8489,7 @@ Appears In Pod -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -8226,9 +8582,9 @@ Appears In Pod -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -8313,7 +8669,7 @@ Appears In Pod -

    List

    +

    List

    kubectl Command

    @@ -8406,7 +8762,7 @@ Appears In Pod -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -8484,7 +8840,7 @@ Appears In Pod -

    Watch

    +

    Watch

    kubectl Command

    @@ -8581,7 +8937,7 @@ Appears In Pod -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -8674,7 +9030,7 @@ Appears In Pod -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -8752,6 +9108,269 @@ Appears In Pod +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Pod

    +

    HTTP Request

    +

    PATCH /api/v1/namespaces/{namespace}/pods/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Pod
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Pod

    +

    HTTP Request

    +

    GET /api/v1/namespaces/{namespace}/pods/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Pod
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Pod

    +

    HTTP Request

    +

    PUT /api/v1/namespaces/{namespace}/pods/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Pod
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Pod
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Pod
    OK

    Proxy Operations

    See supported operations below...

    Create Connect Portforward

    @@ -10180,7 +10799,7 @@ Appears In Pod -

    Misc Operations

    +

    Misc Operations

    See supported operations below...

    Read Log

    @@ -10488,9 +11107,9 @@ Appears In ReplicaSet -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -10578,7 +11197,7 @@ Appears In ReplicaSet -

    Replace

    +

    Replace

    kubectl Command

    @@ -10670,7 +11289,7 @@ Appears In ReplicaSet -

    Patch

    +

    Patch

    kubectl Command

    @@ -10762,7 +11381,7 @@ Appears In ReplicaSet -

    Delete

    +

    Delete

    kubectl Command

    @@ -10862,7 +11481,7 @@ Appears In ReplicaSet -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -10955,9 +11574,9 @@ Appears In ReplicaSet -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -11042,7 +11661,7 @@ Appears In ReplicaSet -

    List

    +

    List

    kubectl Command

    @@ -11135,7 +11754,7 @@ Appears In ReplicaSet -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -11213,7 +11832,7 @@ Appears In ReplicaSet -

    Watch

    +

    Watch

    kubectl Command

    @@ -11310,7 +11929,7 @@ Appears In ReplicaSet -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -11403,7 +12022,7 @@ Appears In ReplicaSet -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -11481,9 +12100,272 @@ Appears In ReplicaSet -

    Misc Operations

    +

    Status Operations

    See supported operations below...

    -

    Read Scale

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified ReplicaSet

    +

    HTTP Request

    +

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicaSet
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified ReplicaSet

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicaSet
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified ReplicaSet

    +

    HTTP Request

    +

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicaSet
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    ReplicaSet
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicaSet
    OK
    +

    Misc Operations

    +

    See supported operations below...

    +

    Read Scale

    kubectl Command

    @@ -11560,7 +12442,7 @@ Appears In ReplicaSet -

    Replace Scale

    +

    Replace Scale

    kubectl Command

    @@ -11652,7 +12534,7 @@ Appears In ReplicaSet -

    Patch Scale

    +

    Patch Scale

    kubectl Command

    @@ -11941,9 +12823,9 @@ Appears In ReplicationController -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -12031,7 +12913,7 @@ Appears In ReplicationController -

    Replace

    +

    Replace

    kubectl Command

    @@ -12123,7 +13005,7 @@ Appears In ReplicationController -

    Patch

    +

    Patch

    kubectl Command

    @@ -12215,7 +13097,7 @@ Appears In ReplicationController -

    Delete

    +

    Delete

    kubectl Command

    @@ -12315,7 +13197,7 @@ Appears In ReplicationController -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -12408,9 +13290,9 @@ Appears In ReplicationController -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -12495,7 +13377,7 @@ Appears In ReplicationController -

    List

    +

    List

    kubectl Command

    @@ -12588,7 +13470,7 @@ Appears In ReplicationController -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -12666,7 +13548,7 @@ Appears In ReplicationController -

    Watch

    +

    Watch

    kubectl Command

    @@ -12763,7 +13645,100 @@ Appears In ReplicationController -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of ReplicationController

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/replicationcontrollers

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -12841,6 +13816,269 @@ Appears In ReplicationController +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified ReplicationController

    +

    HTTP Request

    +

    PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicationController
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicationController
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified ReplicationController

    +

    HTTP Request

    +

    GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicationController
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicationController
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified ReplicationController

    +

    HTTP Request

    +

    PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the ReplicationController
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    ReplicationController
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    ReplicationController
    OK

    StatefulSet v1beta1

    @@ -12981,9 +14219,9 @@ Appears In StatefulSet
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -13071,7 +14309,7 @@ Appears In StatefulSet -

    Replace

    +

    Replace

    kubectl Command

    @@ -13163,7 +14401,7 @@ Appears In StatefulSet -

    Patch

    +

    Patch

    kubectl Command

    @@ -13255,7 +14493,7 @@ Appears In StatefulSet -

    Delete

    +

    Delete

    kubectl Command

    @@ -13355,7 +14593,7 @@ Appears In StatefulSet -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -13448,9 +14686,9 @@ Appears In StatefulSet -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -13535,7 +14773,7 @@ Appears In StatefulSet -

    List

    +

    List

    kubectl Command

    @@ -13628,7 +14866,7 @@ Appears In StatefulSet -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -13706,7 +14944,7 @@ Appears In StatefulSet -

    Watch

    +

    Watch

    kubectl Command

    @@ -13803,7 +15041,7 @@ Appears In StatefulSet -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -13896,7 +15134,7 @@ Appears In StatefulSet -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -13974,9 +15212,9 @@ Appears In StatefulSet -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -14068,7 +15306,7 @@ Appears In StatefulSet -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -14145,7 +15383,7 @@ Appears In StatefulSet -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -14334,9 +15572,9 @@ Appears In EndpointsList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -14424,7 +15662,7 @@ Appears In EndpointsList -

    Replace

    +

    Replace

    kubectl Command

    @@ -14516,7 +15754,7 @@ Appears In EndpointsList -

    Patch

    +

    Patch

    kubectl Command

    @@ -14608,7 +15846,7 @@ Appears In EndpointsList -

    Delete

    +

    Delete

    kubectl Command

    @@ -14708,7 +15946,7 @@ Appears In EndpointsList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -14801,9 +16039,9 @@ Appears In EndpointsList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -14888,7 +16126,7 @@ Appears In EndpointsList -

    List

    +

    List

    kubectl Command

    @@ -14981,7 +16219,7 @@ Appears In EndpointsList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -15059,7 +16297,7 @@ Appears In EndpointsList -

    Watch

    +

    Watch

    kubectl Command

    @@ -15156,7 +16394,7 @@ Appears In EndpointsList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -15249,7 +16487,7 @@ Appears In EndpointsList -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -15450,9 +16688,9 @@ Appears In Ingress -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -15540,7 +16778,7 @@ Appears In Ingress -

    Replace

    +

    Replace

    kubectl Command

    @@ -15632,7 +16870,7 @@ Appears In Ingress -

    Patch

    +

    Patch

    kubectl Command

    @@ -15724,7 +16962,7 @@ Appears In Ingress -

    Delete

    +

    Delete

    kubectl Command

    @@ -15824,7 +17062,7 @@ Appears In Ingress -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -15917,9 +17155,9 @@ Appears In Ingress -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -16004,7 +17242,7 @@ Appears In Ingress -

    List

    +

    List

    kubectl Command

    @@ -16097,7 +17335,7 @@ Appears In Ingress -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -16175,7 +17413,7 @@ Appears In Ingress -

    Watch

    +

    Watch

    kubectl Command

    @@ -16272,7 +17510,100 @@ Appears In Ingress -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Ingress

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -16350,6 +17681,269 @@ Appears In Ingress +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Ingress

    +

    HTTP Request

    +

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Ingress
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Ingress
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Ingress

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Ingress
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Ingress
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Ingress

    +

    HTTP Request

    +

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Ingress
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Ingress
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Ingress
    OK

    Service v1

    @@ -16549,9 +18143,9 @@ Appears In Service -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -16696,7 +18290,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -16861,7 +18455,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -16994,7 +18588,7 @@ $ curl -X PATCH -H 'Content-Type: application/strategic-Delete +

    Delete

    kubectl Command

    @@ -17081,9 +18675,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -17243,7 +18837,7 @@ $ kubectl get service deployment- -

    List

    +

    List

    kubectl Command

    @@ -17335,7 +18929,7 @@ $ kubectl get service -o json -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -17413,7 +19007,7 @@ $ kubectl get service -o json -

    Watch

    +

    Watch

    kubectl Command

    @@ -17591,7 +19185,100 @@ $ kubectl get service deployment-example -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Service

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/services

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -17669,9 +19356,9 @@ $ kubectl get service deployment-example -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -17763,7 +19450,7 @@ $ kubectl get service deployment-example -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -17840,7 +19527,7 @@ $ kubectl get service deployment-example -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -17932,9 +19619,9 @@ $ kubectl get service deployment-example -

    Proxy Operations

    +

    Proxy Operations

    See supported operations below...

    -

    Create Connect Proxy

    +

    Create Connect Proxy

    kubectl Command

    @@ -18011,7 +19698,7 @@ $ kubectl get service deployment-example -

    Create Connect Proxy Path

    +

    Create Connect Proxy Path

    kubectl Command

    @@ -18092,7 +19779,7 @@ $ kubectl get service deployment-example -

    Create Proxy

    +

    Create Proxy

    kubectl Command

    @@ -18154,7 +19841,7 @@ $ kubectl get service deployment-example -

    Create Proxy Path

    +

    Create Proxy Path

    kubectl Command

    @@ -18220,7 +19907,7 @@ $ kubectl get service deployment-example -

    Delete Connect Proxy

    +

    Delete Connect Proxy

    kubectl Command

    @@ -18297,7 +19984,7 @@ $ kubectl get service deployment-example -

    Delete Connect Proxy Path

    +

    Delete Connect Proxy Path

    kubectl Command

    @@ -18378,7 +20065,7 @@ $ kubectl get service deployment-example -

    Delete Proxy

    +

    Delete Proxy

    kubectl Command

    @@ -18440,7 +20127,7 @@ $ kubectl get service deployment-example -

    Delete Proxy Path

    +

    Delete Proxy Path

    kubectl Command

    @@ -18506,7 +20193,7 @@ $ kubectl get service deployment-example -

    Get Connect Proxy

    +

    Get Connect Proxy

    kubectl Command

    @@ -18583,7 +20270,7 @@ $ kubectl get service deployment-example -

    Get Connect Proxy Path

    +

    Get Connect Proxy Path

    kubectl Command

    @@ -18664,7 +20351,7 @@ $ kubectl get service deployment-example -

    Get Proxy

    +

    Get Proxy

    kubectl Command

    @@ -18726,7 +20413,7 @@ $ kubectl get service deployment-example -

    Get Proxy Path

    +

    Get Proxy Path

    kubectl Command

    @@ -18792,7 +20479,7 @@ $ kubectl get service deployment-example -

    Head Connect Proxy

    +

    Head Connect Proxy

    kubectl Command

    @@ -18869,7 +20556,7 @@ $ kubectl get service deployment-example -

    Head Connect Proxy Path

    +

    Head Connect Proxy Path

    kubectl Command

    @@ -18950,7 +20637,7 @@ $ kubectl get service deployment-example -

    Replace Connect Proxy

    +

    Replace Connect Proxy

    kubectl Command

    @@ -19027,7 +20714,7 @@ $ kubectl get service deployment-example -

    Replace Connect Proxy Path

    +

    Replace Connect Proxy Path

    kubectl Command

    @@ -19108,7 +20795,7 @@ $ kubectl get service deployment-example -

    Replace Proxy

    +

    Replace Proxy

    kubectl Command

    @@ -19170,7 +20857,7 @@ $ kubectl get service deployment-example -

    Replace Proxy Path

    +

    Replace Proxy Path

    kubectl Command

    @@ -19320,9 +21007,9 @@ Appears In ConfigMapList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -19410,7 +21097,7 @@ Appears In ConfigMapList -

    Replace

    +

    Replace

    kubectl Command

    @@ -19502,7 +21189,7 @@ Appears In ConfigMapList -

    Patch

    +

    Patch

    kubectl Command

    @@ -19594,7 +21281,7 @@ Appears In ConfigMapList -

    Delete

    +

    Delete

    kubectl Command

    @@ -19694,7 +21381,7 @@ Appears In ConfigMapList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -19787,9 +21474,9 @@ Appears In ConfigMapList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -19874,7 +21561,7 @@ Appears In ConfigMapList -

    List

    +

    List

    kubectl Command

    @@ -19967,7 +21654,7 @@ Appears In ConfigMapList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -20045,7 +21732,7 @@ Appears In ConfigMapList -

    Watch

    +

    Watch

    kubectl Command

    @@ -20142,7 +21829,100 @@ Appears In ConfigMapList -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of ConfigMap

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/configmaps

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -20303,9 +22083,9 @@ Appears In SecretList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -20393,7 +22173,7 @@ Appears In SecretList -

    Replace

    +

    Replace

    kubectl Command

    @@ -20485,7 +22265,7 @@ Appears In SecretList -

    Patch

    +

    Patch

    kubectl Command

    @@ -20577,7 +22357,7 @@ Appears In SecretList -

    Delete

    +

    Delete

    kubectl Command

    @@ -20677,7 +22457,7 @@ Appears In SecretList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -20770,9 +22550,9 @@ Appears In SecretList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -20857,7 +22637,7 @@ Appears In SecretList -

    List

    +

    List

    kubectl Command

    @@ -20950,7 +22730,7 @@ Appears In SecretList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -21028,7 +22808,7 @@ Appears In SecretList -

    Watch

    +

    Watch

    kubectl Command

    @@ -21125,7 +22905,7 @@ Appears In SecretList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -21218,7 +22998,7 @@ Appears In SecretList -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -21436,9 +23216,9 @@ Appears In PersistentVolumeClaim -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -21526,7 +23306,7 @@ Appears In PersistentVolumeClaim -

    Replace

    +

    Replace

    kubectl Command

    @@ -21618,7 +23398,7 @@ Appears In PersistentVolumeClaim -

    Patch

    +

    Patch

    kubectl Command

    @@ -21710,7 +23490,7 @@ Appears In PersistentVolumeClaim -

    Delete

    +

    Delete

    kubectl Command

    @@ -21810,7 +23590,7 @@ Appears In PersistentVolumeClaim -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -21903,9 +23683,9 @@ Appears In PersistentVolumeClaim -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -21990,7 +23770,7 @@ Appears In PersistentVolumeClaim -

    List

    +

    List

    kubectl Command

    @@ -22083,7 +23863,7 @@ Appears In PersistentVolumeClaim -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -22161,7 +23941,7 @@ Appears In PersistentVolumeClaim -

    Watch

    +

    Watch

    kubectl Command

    @@ -22258,7 +24038,100 @@ Appears In PersistentVolumeClaim -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of PersistentVolumeClaim

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/persistentvolumeclaims

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -22336,9 +24209,9 @@ Appears In PersistentVolumeClaim -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -22430,7 +24303,7 @@ Appears In PersistentVolumeClaim -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -22507,7 +24380,7 @@ Appears In PersistentVolumeClaim -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -22679,9 +24552,9 @@ Appears In StorageClassList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -22754,7 +24627,7 @@ Appears In StorageClassList -

    Replace

    +

    Replace

    kubectl Command

    @@ -22842,7 +24715,7 @@ Appears In StorageClassList -

    Patch

    +

    Patch

    kubectl Command

    @@ -22930,7 +24803,7 @@ Appears In StorageClassList -

    Delete

    +

    Delete

    kubectl Command

    @@ -23026,7 +24899,7 @@ Appears In StorageClassList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -23104,9 +24977,9 @@ Appears In StorageClassList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -23187,7 +25060,7 @@ Appears In StorageClassList -

    List

    +

    List

    kubectl Command

    @@ -23265,7 +25138,7 @@ Appears In StorageClassList -

    Watch

    +

    Watch

    kubectl Command

    @@ -23358,6 +25231,84 @@ Appears In StorageClassList +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of StorageClass

    +

    HTTP Request

    +

    GET /apis/storage.k8s.io/v1beta1/watch/storageclasses

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK

    Volume v1

    @@ -23602,9 +25553,9 @@ Appears In EventList
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -23692,7 +25643,7 @@ Appears In EventList -

    Replace

    +

    Replace

    kubectl Command

    @@ -23784,7 +25735,7 @@ Appears In EventList -

    Patch

    +

    Patch

    kubectl Command

    @@ -23876,7 +25827,7 @@ Appears In EventList -

    Delete

    +

    Delete

    kubectl Command

    @@ -23976,7 +25927,7 @@ Appears In EventList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -24069,9 +26020,9 @@ Appears In EventList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -24156,7 +26107,7 @@ Appears In EventList -

    List

    +

    List

    kubectl Command

    @@ -24249,7 +26200,7 @@ Appears In EventList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -24327,7 +26278,7 @@ Appears In EventList -

    Watch

    +

    Watch

    kubectl Command

    @@ -24424,7 +26375,100 @@ Appears In EventList -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Event

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/events

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -24595,9 +26639,9 @@ Appears In LimitRange -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -24685,7 +26729,7 @@ Appears In LimitRange -

    Replace

    +

    Replace

    kubectl Command

    @@ -24777,7 +26821,7 @@ Appears In LimitRange -

    Patch

    +

    Patch

    kubectl Command

    @@ -24869,7 +26913,7 @@ Appears In LimitRange -

    Delete

    +

    Delete

    kubectl Command

    @@ -24969,7 +27013,7 @@ Appears In LimitRange -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -25062,9 +27106,9 @@ Appears In LimitRange -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -25149,7 +27193,7 @@ Appears In LimitRange -

    List

    +

    List

    kubectl Command

    @@ -25242,7 +27286,7 @@ Appears In LimitRange -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -25320,7 +27364,7 @@ Appears In LimitRange -

    Watch

    +

    Watch

    kubectl Command

    @@ -25417,7 +27461,100 @@ Appears In LimitRange -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of LimitRange

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/limitranges

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -25641,9 +27778,9 @@ Appears In HorizontalPodAutoscaler -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -25731,7 +27868,7 @@ Appears In HorizontalPodAutoscaler -

    Replace

    +

    Replace

    kubectl Command

    @@ -25823,7 +27960,7 @@ Appears In HorizontalPodAutoscaler -

    Patch

    +

    Patch

    kubectl Command

    @@ -25915,7 +28052,7 @@ Appears In HorizontalPodAutoscaler -

    Delete

    +

    Delete

    kubectl Command

    @@ -26015,7 +28152,7 @@ Appears In HorizontalPodAutoscaler -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -26108,9 +28245,9 @@ Appears In HorizontalPodAutoscaler -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -26195,7 +28332,7 @@ Appears In HorizontalPodAutoscaler -

    List

    +

    List

    kubectl Command

    @@ -26288,7 +28425,7 @@ Appears In HorizontalPodAutoscaler -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -26366,7 +28503,7 @@ Appears In HorizontalPodAutoscaler -

    Watch

    +

    Watch

    kubectl Command

    @@ -26463,7 +28600,100 @@ Appears In HorizontalPodAutoscaler -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of HorizontalPodAutoscaler

    +

    HTTP Request

    +

    GET /apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -26541,6 +28771,269 @@ Appears In HorizontalPodAutoscaler +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    PATCH /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    GET /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    PUT /apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    HorizontalPodAutoscaler
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK

    PodTemplate v1

    @@ -26638,9 +29131,9 @@ Appears In DaemonSetSpecWrite Operations +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -26728,7 +29221,7 @@ Appears In
    DaemonSetSpecReplace +

    Replace

    kubectl Command

    @@ -26820,7 +29313,7 @@ Appears In
    DaemonSetSpecPatch +

    Patch

    kubectl Command

    @@ -26912,7 +29405,7 @@ Appears In
    DaemonSetSpecDelete +

    Delete

    kubectl Command

    @@ -27012,7 +29505,7 @@ Appears In
    DaemonSetSpecDelete Collection +

    Delete Collection

    kubectl Command

    @@ -27105,9 +29598,9 @@ Appears In
    DaemonSetSpecRead Operations +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -27192,7 +29685,7 @@ Appears In
    DaemonSetSpecList +

    List

    kubectl Command

    @@ -27285,7 +29778,7 @@ Appears In
    DaemonSetSpecList All Namespaces +

    List All Namespaces

    kubectl Command

    @@ -27363,7 +29856,7 @@ Appears In
    DaemonSetSpecWatch +

    Watch

    kubectl Command

    @@ -27460,7 +29953,100 @@ Appears In
    DaemonSetSpecWatch List All Namespaces +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of PodTemplate

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/podtemplates

    +

    Path Parameters

    +
    + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -27677,9 +30263,9 @@ Appears In
    PodDisruptionBudget -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -27767,7 +30353,7 @@ Appears In PodDisruptionBudget -

    Replace

    +

    Replace

    kubectl Command

    @@ -27859,7 +30445,7 @@ Appears In PodDisruptionBudget -

    Patch

    +

    Patch

    kubectl Command

    @@ -27951,7 +30537,7 @@ Appears In PodDisruptionBudget -

    Delete

    +

    Delete

    kubectl Command

    @@ -28051,7 +30637,7 @@ Appears In PodDisruptionBudget -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -28144,9 +30730,9 @@ Appears In PodDisruptionBudget -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -28231,7 +30817,7 @@ Appears In PodDisruptionBudget -

    List

    +

    List

    kubectl Command

    @@ -28324,7 +30910,7 @@ Appears In PodDisruptionBudget -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -28402,7 +30988,7 @@ Appears In PodDisruptionBudget -

    Watch

    +

    Watch

    kubectl Command

    @@ -28499,7 +31085,100 @@ Appears In PodDisruptionBudget -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of PodDisruptionBudget

    +

    HTTP Request

    +

    GET /apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -28577,6 +31256,269 @@ Appears In PodDisruptionBudget +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified PodDisruptionBudget

    +

    HTTP Request

    +

    PATCH /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the PodDisruptionBudget
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    PodDisruptionBudget
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified PodDisruptionBudget

    +

    HTTP Request

    +

    GET /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the PodDisruptionBudget
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    PodDisruptionBudget
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified PodDisruptionBudget

    +

    HTTP Request

    +

    PUT /apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the PodDisruptionBudget
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    PodDisruptionBudget
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    PodDisruptionBudget
    OK

    ThirdPartyResource v1beta1

    @@ -28656,9 +31598,9 @@ Appears In ThirdPartyResourceList
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -28731,7 +31673,7 @@ Appears In ThirdPartyResourceList -

    Replace

    +

    Replace

    kubectl Command

    @@ -28819,7 +31761,7 @@ Appears In ThirdPartyResourceList -

    Patch

    +

    Patch

    kubectl Command

    @@ -28907,7 +31849,7 @@ Appears In ThirdPartyResourceList -

    Delete

    +

    Delete

    kubectl Command

    @@ -29003,7 +31945,7 @@ Appears In ThirdPartyResourceList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -29081,9 +32023,9 @@ Appears In ThirdPartyResourceList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -29164,7 +32106,7 @@ Appears In ThirdPartyResourceList -

    List

    +

    List

    kubectl Command

    @@ -29242,7 +32184,7 @@ Appears In ThirdPartyResourceList -

    Watch

    +

    Watch

    kubectl Command

    @@ -29335,6 +32277,84 @@ Appears In ThirdPartyResourceList +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of ThirdPartyResource

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/thirdpartyresources

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK

    CLUSTER

    Cluster resources are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators.


    @@ -29383,9 +32403,9 @@ Appears In ThirdPartyResourceList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -29604,9 +32624,9 @@ Appears In CertificateSigningReque -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -29679,7 +32699,7 @@ Appears In
    CertificateSigningReque -

    Replace

    +

    Replace

    kubectl Command

    @@ -29767,7 +32787,7 @@ Appears In
    CertificateSigningReque -

    Patch

    +

    Patch

    kubectl Command

    @@ -29855,7 +32875,7 @@ Appears In
    CertificateSigningReque -

    Delete

    +

    Delete

    kubectl Command

    @@ -29951,7 +32971,7 @@ Appears In
    CertificateSigningReque -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -30029,9 +33049,9 @@ Appears In
    CertificateSigningReque -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -30112,7 +33132,7 @@ Appears In
    CertificateSigningReque -

    List

    +

    List

    kubectl Command

    @@ -30190,7 +33210,7 @@ Appears In
    CertificateSigningReque -

    Watch

    +

    Watch

    kubectl Command

    @@ -30283,6 +33303,174 @@ Appears In
    CertificateSigningReque +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of CertificateSigningRequest

    +

    HTTP Request

    +

    GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Status Operations

    +

    See supported operations below...

    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified CertificateSigningRequest

    +

    HTTP Request

    +

    PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the CertificateSigningRequest
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    CertificateSigningRequest
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    CertificateSigningRequest
    OK

    ClusterRole v1alpha1

    @@ -30358,9 +33546,9 @@ Appears In ClusterRoleList
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -30433,7 +33621,7 @@ Appears In ClusterRoleList -

    Replace

    +

    Replace

    kubectl Command

    @@ -30521,7 +33709,7 @@ Appears In ClusterRoleList -

    Patch

    +

    Patch

    kubectl Command

    @@ -30609,7 +33797,7 @@ Appears In ClusterRoleList -

    Delete

    +

    Delete

    kubectl Command

    @@ -30705,7 +33893,7 @@ Appears In ClusterRoleList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -30783,9 +33971,9 @@ Appears In ClusterRoleList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -30858,7 +34046,7 @@ Appears In ClusterRoleList -

    List

    +

    List

    kubectl Command

    @@ -30936,7 +34124,7 @@ Appears In ClusterRoleList -

    Watch

    +

    Watch

    kubectl Command

    @@ -31029,6 +34217,84 @@ Appears In ClusterRoleList +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of ClusterRole

    +

    HTTP Request

    +

    GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK

    ClusterRoleBinding v1alpha1

    @@ -31108,9 +34374,9 @@ Appears In ClusterRoleBindingList
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -31183,7 +34449,7 @@ Appears In ClusterRoleBindingList -

    Replace

    +

    Replace

    kubectl Command

    @@ -31271,7 +34537,7 @@ Appears In ClusterRoleBindingList -

    Patch

    +

    Patch

    kubectl Command

    @@ -31359,7 +34625,7 @@ Appears In ClusterRoleBindingList -

    Delete

    +

    Delete

    kubectl Command

    @@ -31455,7 +34721,7 @@ Appears In ClusterRoleBindingList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -31533,9 +34799,9 @@ Appears In ClusterRoleBindingList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -31608,7 +34874,7 @@ Appears In ClusterRoleBindingList -

    List

    +

    List

    kubectl Command

    @@ -31686,7 +34952,7 @@ Appears In ClusterRoleBindingList -

    Watch

    +

    Watch

    kubectl Command

    @@ -31779,7 +35045,7 @@ Appears In ClusterRoleBindingList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -31932,9 +35198,9 @@ Appears In ComponentStatusList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -32007,7 +35273,7 @@ Appears In ComponentStatusList -

    List

    +

    List

    kubectl Command

    @@ -32134,9 +35400,9 @@ Appears In ComponentStatusList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -32339,9 +35605,9 @@ Appears In Namespace -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -32414,7 +35680,7 @@ Appears In Namespace -

    Replace

    +

    Replace

    kubectl Command

    @@ -32502,7 +35768,7 @@ Appears In Namespace -

    Patch

    +

    Patch

    kubectl Command

    @@ -32590,7 +35856,7 @@ Appears In Namespace -

    Delete

    +

    Delete

    kubectl Command

    @@ -32686,7 +35952,7 @@ Appears In Namespace -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -32764,9 +36030,9 @@ Appears In Namespace -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -32847,7 +36113,7 @@ Appears In Namespace -

    List

    +

    List

    kubectl Command

    @@ -32925,7 +36191,7 @@ Appears In Namespace -

    Watch

    +

    Watch

    kubectl Command

    @@ -33018,6 +36284,335 @@ Appears In Namespace +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Namespace

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Namespace

    +

    HTTP Request

    +

    PATCH /api/v1/namespaces/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Namespace
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Namespace
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Namespace

    +

    HTTP Request

    +

    GET /api/v1/namespaces/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Namespace
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Namespace
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Namespace

    +

    HTTP Request

    +

    PUT /api/v1/namespaces/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Namespace
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Namespace
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Namespace
    OK

    Node v1

    @@ -33181,9 +36776,9 @@ Appears In Node
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -33256,7 +36851,7 @@ Appears In Node -

    Replace

    +

    Replace

    kubectl Command

    @@ -33344,7 +36939,7 @@ Appears In Node -

    Patch

    +

    Patch

    kubectl Command

    @@ -33432,7 +37027,7 @@ Appears In Node -

    Delete

    +

    Delete

    kubectl Command

    @@ -33528,7 +37123,7 @@ Appears In Node -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -33606,9 +37201,9 @@ Appears In Node -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -33689,7 +37284,7 @@ Appears In Node -

    List

    +

    List

    kubectl Command

    @@ -33767,7 +37362,7 @@ Appears In Node -

    Watch

    +

    Watch

    kubectl Command

    @@ -33860,9 +37455,338 @@ Appears In Node -

    Proxy Operations

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Node

    +

    HTTP Request

    +

    GET /api/v1/watch/nodes

    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Status Operations

    See supported operations below...

    -

    Create Connect Proxy

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Node

    +

    HTTP Request

    +

    PATCH /api/v1/nodes/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Node
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Node
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Node

    +

    HTTP Request

    +

    GET /api/v1/nodes/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Node
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Node
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Node

    +

    HTTP Request

    +

    PUT /api/v1/nodes/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Node
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Node
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Node
    OK
    +

    Proxy Operations

    +

    See supported operations below...

    +

    Create Connect Proxy

    kubectl Command

    @@ -33935,7 +37859,7 @@ Appears In Node -

    Create Connect Proxy Path

    +

    Create Connect Proxy Path

    kubectl Command

    @@ -34012,7 +37936,7 @@ Appears In Node -

    Create Proxy

    +

    Create Proxy

    kubectl Command

    @@ -34070,7 +37994,7 @@ Appears In Node -

    Create Proxy Path

    +

    Create Proxy Path

    kubectl Command

    @@ -34132,7 +38056,7 @@ Appears In Node -

    Delete Connect Proxy

    +

    Delete Connect Proxy

    kubectl Command

    @@ -34205,7 +38129,7 @@ Appears In Node -

    Delete Connect Proxy Path

    +

    Delete Connect Proxy Path

    kubectl Command

    @@ -34282,7 +38206,7 @@ Appears In Node -

    Delete Proxy

    +

    Delete Proxy

    kubectl Command

    @@ -34340,7 +38264,7 @@ Appears In Node -

    Delete Proxy Path

    +

    Delete Proxy Path

    kubectl Command

    @@ -34402,7 +38326,7 @@ Appears In Node -

    Get Connect Proxy

    +

    Get Connect Proxy

    kubectl Command

    @@ -34475,7 +38399,7 @@ Appears In Node -

    Get Connect Proxy Path

    +

    Get Connect Proxy Path

    kubectl Command

    @@ -34552,7 +38476,7 @@ Appears In Node -

    Get Proxy

    +

    Get Proxy

    kubectl Command

    @@ -34610,7 +38534,7 @@ Appears In Node -

    Get Proxy Path

    +

    Get Proxy Path

    kubectl Command

    @@ -34672,7 +38596,7 @@ Appears In Node -

    Head Connect Proxy

    +

    Head Connect Proxy

    kubectl Command

    @@ -34745,7 +38669,7 @@ Appears In Node -

    Head Connect Proxy Path

    +

    Head Connect Proxy Path

    kubectl Command

    @@ -34822,7 +38746,7 @@ Appears In Node -

    Replace Connect Proxy

    +

    Replace Connect Proxy

    kubectl Command

    @@ -34895,7 +38819,7 @@ Appears In Node -

    Replace Connect Proxy Path

    +

    Replace Connect Proxy Path

    kubectl Command

    @@ -34972,7 +38896,7 @@ Appears In Node -

    Replace Proxy

    +

    Replace Proxy

    kubectl Command

    @@ -35030,7 +38954,7 @@ Appears In Node -

    Replace Proxy Path

    +

    Replace Proxy Path

    kubectl Command

    @@ -35300,9 +39224,9 @@ Appears In PersistentVolume -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -35375,7 +39299,7 @@ Appears In PersistentVolume -

    Replace

    +

    Replace

    kubectl Command

    @@ -35463,7 +39387,7 @@ Appears In PersistentVolume -

    Patch

    +

    Patch

    kubectl Command

    @@ -35551,7 +39475,7 @@ Appears In PersistentVolume -

    Delete

    +

    Delete

    kubectl Command

    @@ -35647,7 +39571,7 @@ Appears In PersistentVolume -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -35725,9 +39649,9 @@ Appears In PersistentVolume -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -35808,7 +39732,7 @@ Appears In PersistentVolume -

    List

    +

    List

    kubectl Command

    @@ -35886,7 +39810,7 @@ Appears In PersistentVolume -

    Watch

    +

    Watch

    kubectl Command

    @@ -35979,7 +39903,7 @@ Appears In PersistentVolume -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -36057,9 +39981,9 @@ Appears In PersistentVolume -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -36147,7 +40071,7 @@ Appears In PersistentVolume -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -36220,7 +40144,7 @@ Appears In PersistentVolume -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -36431,9 +40355,9 @@ Appears In ResourceQuota -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -36521,7 +40445,7 @@ Appears In ResourceQuota -

    Replace

    +

    Replace

    kubectl Command

    @@ -36613,7 +40537,7 @@ Appears In ResourceQuota -

    Patch

    +

    Patch

    kubectl Command

    @@ -36705,7 +40629,7 @@ Appears In ResourceQuota -

    Delete

    +

    Delete

    kubectl Command

    @@ -36805,7 +40729,7 @@ Appears In ResourceQuota -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -36898,9 +40822,9 @@ Appears In ResourceQuota -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -36985,7 +40909,7 @@ Appears In ResourceQuota -

    List

    +

    List

    kubectl Command

    @@ -37078,7 +41002,7 @@ Appears In ResourceQuota -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -37156,7 +41080,7 @@ Appears In ResourceQuota -

    Watch

    +

    Watch

    kubectl Command

    @@ -37253,7 +41177,100 @@ Appears In ResourceQuota -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of ResourceQuota

    +

    HTTP Request

    +

    GET /api/v1/watch/namespaces/{namespace}/resourcequotas

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -37331,9 +41348,9 @@ Appears In ResourceQuota -

    Status Operations

    +

    Status Operations

    See supported operations below...

    -

    Patch Status

    +

    Patch Status

    kubectl Command

    @@ -37425,7 +41442,7 @@ Appears In ResourceQuota -

    Read Status

    +

    Read Status

    kubectl Command

    @@ -37502,7 +41519,7 @@ Appears In ResourceQuota -

    Replace Status

    +

    Replace Status

    kubectl Command

    @@ -37669,9 +41686,9 @@ Appears In RoleList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -37759,7 +41776,7 @@ Appears In RoleList -

    Replace

    +

    Replace

    kubectl Command

    @@ -37851,7 +41868,7 @@ Appears In RoleList -

    Patch

    +

    Patch

    kubectl Command

    @@ -37943,7 +41960,7 @@ Appears In RoleList -

    Delete

    +

    Delete

    kubectl Command

    @@ -38043,7 +42060,7 @@ Appears In RoleList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -38136,9 +42153,9 @@ Appears In RoleList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -38215,7 +42232,7 @@ Appears In RoleList -

    List

    +

    List

    kubectl Command

    @@ -38308,7 +42325,7 @@ Appears In RoleList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -38386,7 +42403,7 @@ Appears In RoleList -

    Watch

    +

    Watch

    kubectl Command

    @@ -38483,7 +42500,7 @@ Appears In RoleList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -38576,7 +42593,7 @@ Appears In RoleList -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -38733,9 +42750,9 @@ Appears In RoleBindingList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -38823,7 +42840,7 @@ Appears In RoleBindingList -

    Replace

    +

    Replace

    kubectl Command

    @@ -38915,7 +42932,7 @@ Appears In RoleBindingList -

    Patch

    +

    Patch

    kubectl Command

    @@ -39007,7 +43024,7 @@ Appears In RoleBindingList -

    Delete

    +

    Delete

    kubectl Command

    @@ -39107,7 +43124,7 @@ Appears In RoleBindingList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -39200,9 +43217,9 @@ Appears In RoleBindingList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -39279,7 +43296,7 @@ Appears In RoleBindingList -

    List

    +

    List

    kubectl Command

    @@ -39372,7 +43389,7 @@ Appears In RoleBindingList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -39450,7 +43467,7 @@ Appears In RoleBindingList -

    Watch

    +

    Watch

    kubectl Command

    @@ -39547,7 +43564,7 @@ Appears In RoleBindingList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -39640,7 +43657,7 @@ Appears In RoleBindingList -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -39789,9 +43806,9 @@ Appears In SelfSubjectAccessReview -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -39943,9 +43960,9 @@ Appears In ServiceAccountList -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -40033,7 +44050,7 @@ Appears In ServiceAccountList -

    Replace

    +

    Replace

    kubectl Command

    @@ -40125,7 +44142,7 @@ Appears In ServiceAccountList -

    Patch

    +

    Patch

    kubectl Command

    @@ -40217,7 +44234,7 @@ Appears In ServiceAccountList -

    Delete

    +

    Delete

    kubectl Command

    @@ -40317,7 +44334,7 @@ Appears In ServiceAccountList -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -40410,9 +44427,9 @@ Appears In ServiceAccountList -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -40497,7 +44514,7 @@ Appears In ServiceAccountList -

    List

    +

    List

    kubectl Command

    @@ -40590,7 +44607,7 @@ Appears In ServiceAccountList -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -40668,7 +44685,7 @@ Appears In ServiceAccountList -

    Watch

    +

    Watch

    kubectl Command

    @@ -40765,7 +44782,7 @@ Appears In ServiceAccountList -

    Watch List

    +

    Watch List

    kubectl Command

    @@ -40858,7 +44875,7 @@ Appears In ServiceAccountList -

    Watch List All Namespaces

    +

    Watch List All Namespaces

    kubectl Command

    @@ -41045,9 +45062,9 @@ Appears In LocalSubjectAccessReview< -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -41213,9 +45230,9 @@ Appears In
    TokenReview -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -41384,9 +45401,9 @@ Appears In NetworkPolicy -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -41474,7 +45491,7 @@ Appears In NetworkPolicy -

    Replace

    +

    Replace

    kubectl Command

    @@ -41566,7 +45583,7 @@ Appears In NetworkPolicy -

    Patch

    +

    Patch

    kubectl Command

    @@ -41658,7 +45675,7 @@ Appears In NetworkPolicy -

    Delete

    +

    Delete

    kubectl Command

    @@ -41758,7 +45775,7 @@ Appears In NetworkPolicy -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -41851,9 +45868,9 @@ Appears In NetworkPolicy -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -41938,7 +45955,7 @@ Appears In NetworkPolicy -

    List

    +

    List

    kubectl Command

    @@ -42031,7 +46048,7 @@ Appears In NetworkPolicy -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -42109,7 +46126,7 @@ Appears In NetworkPolicy -

    Watch

    +

    Watch

    kubectl Command

    @@ -42206,7 +46223,100 @@ Appears In NetworkPolicy -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of NetworkPolicy

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -47686,9 +51796,9 @@ Appears In HorizontalPodAutoscaler -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -47776,7 +51886,7 @@ Appears In HorizontalPodAutoscaler -

    Replace

    +

    Replace

    kubectl Command

    @@ -47868,7 +51978,7 @@ Appears In HorizontalPodAutoscaler -

    Patch

    +

    Patch

    kubectl Command

    @@ -47960,7 +52070,7 @@ Appears In HorizontalPodAutoscaler -

    Delete

    +

    Delete

    kubectl Command

    @@ -48060,7 +52170,7 @@ Appears In HorizontalPodAutoscaler -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -48153,9 +52263,9 @@ Appears In HorizontalPodAutoscaler -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -48240,7 +52350,7 @@ Appears In HorizontalPodAutoscaler -

    List

    +

    List

    kubectl Command

    @@ -48333,7 +52443,7 @@ Appears In HorizontalPodAutoscaler -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -48411,7 +52521,7 @@ Appears In HorizontalPodAutoscaler -

    Watch

    +

    Watch

    kubectl Command

    @@ -48508,7 +52618,100 @@ Appears In HorizontalPodAutoscaler -

    Watch List All Namespaces

    +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of HorizontalPodAutoscaler

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -48586,6 +52789,269 @@ Appears In HorizontalPodAutoscaler +

    Status Operations

    +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified HorizontalPodAutoscaler

    +

    HTTP Request

    +

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the HorizontalPodAutoscaler
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    HorizontalPodAutoscaler
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    HorizontalPodAutoscaler
    OK

    Job v1beta1

    @@ -48744,9 +53210,9 @@ Appears In Job
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -48916,7 +53382,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -49008,7 +53474,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -49100,7 +53566,7 @@ spec: -

    Delete

    +

    Delete

    kubectl Command

    @@ -49210,7 +53676,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -49303,9 +53769,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -49501,7 +53967,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -49721,7 +54187,7 @@ $ kubectl get job -o json -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -49799,7 +54265,7 @@ $ kubectl get job -o json -

    Watch

    +

    Watch

    kubectl Command

    @@ -50017,7 +54483,100 @@ $ kubectl get job example-job Watch List All Namespaces +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Job

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -50095,6 +54654,269 @@ $ kubectl get job example-job Status Operations +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Job

    +

    HTTP Request

    +

    PATCH /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Job

    +

    HTTP Request

    +

    GET /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Job

    +

    HTTP Request

    +

    PUT /apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Job
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK

    Job v2alpha1

    @@ -50253,9 +55075,9 @@ Appears In Job
    -

    Write Operations

    +

    Write Operations

    See supported operations below...

    -

    Create

    +

    Create

    kubectl Command

    @@ -50425,7 +55247,7 @@ spec: -

    Replace

    +

    Replace

    kubectl Command

    @@ -50517,7 +55339,7 @@ spec: -

    Patch

    +

    Patch

    kubectl Command

    @@ -50609,7 +55431,7 @@ spec: -

    Delete

    +

    Delete

    kubectl Command

    @@ -50719,7 +55541,7 @@ orphanDependents: false -

    Delete Collection

    +

    Delete Collection

    kubectl Command

    @@ -50812,9 +55634,9 @@ orphanDependents: false -

    Read Operations

    +

    Read Operations

    See supported operations below...

    -

    Read

    +

    Read

    kubectl Command

    @@ -51010,7 +55832,7 @@ $ curl -X GET http:// -

    List

    +

    List

    kubectl Command

    @@ -51230,7 +56052,7 @@ $ kubectl get job -o json -

    List All Namespaces

    +

    List All Namespaces

    kubectl Command

    @@ -51308,7 +56130,7 @@ $ kubectl get job -o json -

    Watch

    +

    Watch

    kubectl Command

    @@ -51526,7 +56348,100 @@ $ kubectl get job example-job Watch List All Namespaces +

    Watch List

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    watch individual changes to a list of Job

    +

    HTTP Request

    +

    GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/jobs

    +

    Path Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ParameterDescription
    fieldSelectorA selector to restrict the list of returned objects by their fields. Defaults to everything.
    labelSelectorA selector to restrict the list of returned objects by their labels. Defaults to everything.
    prettyIf 'true', then the output is pretty printed.
    resourceVersionWhen specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.
    timeoutSecondsTimeout for the list/watch call.
    watchWatch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Event
    OK
    +

    Watch List All Namespaces

    kubectl Command

    @@ -51604,6 +56519,269 @@ $ kubectl get job example-job Status Operations +

    See supported operations below...

    +

    Patch Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    partially update status of the specified Job

    +

    HTTP Request

    +

    PATCH /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Patch
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Read Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    read status of the specified Job

    +

    HTTP Request

    +

    GET /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK
    +

    Replace Status

    +
    +

    kubectl Command

    +
    +
    
    +Coming Soon
    +
    +
    +

    curl Command (requires kubectl proxy to be running)

    +
    +
    
    +Coming Soon
    +
    +
    +

    Output

    +
    +
    
    +Coming Soon
    +
    +
    +

    Response Body

    +
    +
    
    +Coming Soon
    +
    +

    replace status of the specified Job

    +

    HTTP Request

    +

    PUT /apis/batch/v2alpha1/namespaces/{namespace}/jobs/{name}/status

    +

    Path Parameters

    + + + + + + + + + + + + + + + + + +
    ParameterDescription
    namename of the Job
    namespaceobject name and auth scope, such as for teams and projects
    +

    Query Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    prettyIf 'true', then the output is pretty printed.
    +

    Body Parameters

    + + + + + + + + + + + + + +
    ParameterDescription
    body
    Job
    +

    Response

    + + + + + + + + + + + + + +
    CodeDescription
    200
    Job
    OK

    JobCondition v1beta1

    @@ -51827,4 +57005,4 @@ Appears In Scale - + \ No newline at end of file diff --git a/docs/api-reference/v1.5/navData.js b/docs/api-reference/v1.5/navData.js index 2b19be8860..fc3b93deea 100644 --- a/docs/api-reference/v1.5/navData.js +++ b/docs/api-reference/v1.5/navData.js @@ -1 +1 @@ -(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[{"section":"-strong-read-operations-strong--484","subsections":[{"section":"watch-list-all-namespaces-489"},{"section":"watch-488"},{"section":"list-all-namespaces-487"},{"section":"list-486"},{"section":"read-485"}]},{"section":"-strong-write-operations-strong--478","subsections":[{"section":"delete-collection-483"},{"section":"delete-482"},{"section":"patch-481"},{"section":"replace-480"},{"section":"create-479"}]}]},{"section":"job-v1beta1","subsections":[{"section":"-strong-read-operations-strong--472","subsections":[{"section":"watch-list-all-namespaces-477"},{"section":"watch-476"},{"section":"list-all-namespaces-475"},{"section":"list-474"},{"section":"read-473"}]},{"section":"-strong-write-operations-strong--466","subsections":[{"section":"delete-collection-471"},{"section":"delete-470"},{"section":"patch-469"},{"section":"replace-468"},{"section":"create-467"}]}]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[{"section":"-strong-read-operations-strong--460","subsections":[{"section":"watch-list-all-namespaces-465"},{"section":"watch-464"},{"section":"list-all-namespaces-463"},{"section":"list-462"},{"section":"read-461"}]},{"section":"-strong-write-operations-strong--454","subsections":[{"section":"delete-collection-459"},{"section":"delete-458"},{"section":"patch-457"},{"section":"replace-456"},{"section":"create-455"}]}]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"vspherevirtualdiskvolumesource-v1"},{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretvolumesource-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"rbdvolumesource-v1"},{"section":"quobytevolumesource-v1"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"photonpersistentdiskvolumesource-v1"},{"section":"persistentvolumeclaimvolumesource-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"nfsvolumesource-v1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"keytopath-v1"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"iscsivolumesource-v1"},{"section":"hostpathvolumesource-v1"},{"section":"handler-v1"},{"section":"httpingressrulevalue-v1beta1"},{"section":"httpingresspath-v1beta1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"glusterfsvolumesource-v1"},{"section":"gitrepovolumesource-v1"},{"section":"gcepersistentdiskvolumesource-v1"},{"section":"flockervolumesource-v1"},{"section":"flexvolumesource-v1"},{"section":"fcvolumesource-v1"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"emptydirvolumesource-v1"},{"section":"downwardapivolumesource-v1"},{"section":"downwardapivolumefile-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapvolumesource-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"cindervolumesource-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"cephfsvolumesource-v1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"azurefilevolumesource-v1"},{"section":"azurediskvolumesource-v1"},{"section":"attachedvolume-v1"},{"section":"awselasticblockstorevolumesource-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[{"section":"-strong-read-operations-strong--448","subsections":[{"section":"watch-list-all-namespaces-453"},{"section":"watch-452"},{"section":"list-all-namespaces-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":"tokenreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--440","subsections":[{"section":"create-441"}]}]},{"section":"subjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--438","subsections":[{"section":"create-439"}]}]},{"section":"serviceaccount-v1","subsections":[{"section":"-strong-read-operations-strong--431","subsections":[{"section":"watch-list-all-namespaces-437"},{"section":"watch-list-436"},{"section":"watch-435"},{"section":"list-all-namespaces-434"},{"section":"list-433"},{"section":"read-432"}]},{"section":"-strong-write-operations-strong--425","subsections":[{"section":"delete-collection-430"},{"section":"delete-429"},{"section":"patch-428"},{"section":"replace-427"},{"section":"create-426"}]}]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--423","subsections":[{"section":"create-424"}]}]},{"section":"rolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--416","subsections":[{"section":"watch-list-all-namespaces-422"},{"section":"watch-list-421"},{"section":"watch-420"},{"section":"list-all-namespaces-419"},{"section":"list-418"},{"section":"read-417"}]},{"section":"-strong-write-operations-strong--410","subsections":[{"section":"delete-collection-415"},{"section":"delete-414"},{"section":"patch-413"},{"section":"replace-412"},{"section":"create-411"}]}]},{"section":"role-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--403","subsections":[{"section":"watch-list-all-namespaces-409"},{"section":"watch-list-408"},{"section":"watch-407"},{"section":"list-all-namespaces-406"},{"section":"list-405"},{"section":"read-404"}]},{"section":"-strong-write-operations-strong--397","subsections":[{"section":"delete-collection-402"},{"section":"delete-401"},{"section":"patch-400"},{"section":"replace-399"},{"section":"create-398"}]}]},{"section":"resourcequota-v1","subsections":[{"section":"-strong-status-operations-strong--393","subsections":[{"section":"replace-status-396"},{"section":"read-status-395"},{"section":"patch-status-394"}]},{"section":"-strong-read-operations-strong--387","subsections":[{"section":"watch-list-all-namespaces-392"},{"section":"watch-391"},{"section":"list-all-namespaces-390"},{"section":"list-389"},{"section":"read-388"}]},{"section":"-strong-write-operations-strong--381","subsections":[{"section":"delete-collection-386"},{"section":"delete-385"},{"section":"patch-384"},{"section":"replace-383"},{"section":"create-382"}]}]},{"section":"persistentvolume-v1","subsections":[{"section":"-strong-status-operations-strong--377","subsections":[{"section":"replace-status-380"},{"section":"read-status-379"},{"section":"patch-status-378"}]},{"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":"node-v1","subsections":[{"section":"-strong-proxy-operations-strong--347","subsections":[{"section":"replace-proxy-path-365"},{"section":"replace-proxy-364"},{"section":"replace-connect-proxy-path-363"},{"section":"replace-connect-proxy-362"},{"section":"head-connect-proxy-path-361"},{"section":"head-connect-proxy-360"},{"section":"get-proxy-path-359"},{"section":"get-proxy-358"},{"section":"get-connect-proxy-path-357"},{"section":"get-connect-proxy-356"},{"section":"delete-proxy-path-355"},{"section":"delete-proxy-354"},{"section":"delete-connect-proxy-path-353"},{"section":"delete-connect-proxy-352"},{"section":"create-proxy-path-351"},{"section":"create-proxy-350"},{"section":"create-connect-proxy-path-349"},{"section":"create-connect-proxy-348"}]},{"section":"-strong-read-operations-strong--343","subsections":[{"section":"watch-346"},{"section":"list-345"},{"section":"read-344"}]},{"section":"-strong-write-operations-strong--337","subsections":[{"section":"delete-collection-342"},{"section":"delete-341"},{"section":"patch-340"},{"section":"replace-339"},{"section":"create-338"}]}]},{"section":"namespace-v1","subsections":[{"section":"-strong-read-operations-strong--333","subsections":[{"section":"watch-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":"localsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--325","subsections":[{"section":"create-326"}]}]},{"section":"componentstatus-v1","subsections":[{"section":"-strong-read-operations-strong--322","subsections":[{"section":"list-324"},{"section":"read-323"}]}]},{"section":"clusterrolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--317","subsections":[{"section":"watch-list-321"},{"section":"watch-320"},{"section":"list-319"},{"section":"read-318"}]},{"section":"-strong-write-operations-strong--311","subsections":[{"section":"delete-collection-316"},{"section":"delete-315"},{"section":"patch-314"},{"section":"replace-313"},{"section":"create-312"}]}]},{"section":"clusterrole-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--307","subsections":[{"section":"watch-310"},{"section":"list-309"},{"section":"read-308"}]},{"section":"-strong-write-operations-strong--301","subsections":[{"section":"delete-collection-306"},{"section":"delete-305"},{"section":"patch-304"},{"section":"replace-303"},{"section":"create-302"}]}]},{"section":"certificatesigningrequest-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--297","subsections":[{"section":"watch-300"},{"section":"list-299"},{"section":"read-298"}]},{"section":"-strong-write-operations-strong--291","subsections":[{"section":"delete-collection-296"},{"section":"delete-295"},{"section":"patch-294"},{"section":"replace-293"},{"section":"create-292"}]}]},{"section":"binding-v1","subsections":[{"section":"-strong-write-operations-strong--289","subsections":[{"section":"create-290"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[{"section":"-strong-read-operations-strong--285","subsections":[{"section":"watch-288"},{"section":"list-287"},{"section":"read-286"}]},{"section":"-strong-write-operations-strong--279","subsections":[{"section":"delete-collection-284"},{"section":"delete-283"},{"section":"patch-282"},{"section":"replace-281"},{"section":"create-280"}]}]},{"section":"poddisruptionbudget-v1beta1","subsections":[{"section":"-strong-read-operations-strong--273","subsections":[{"section":"watch-list-all-namespaces-278"},{"section":"watch-277"},{"section":"list-all-namespaces-276"},{"section":"list-275"},{"section":"read-274"}]},{"section":"-strong-write-operations-strong--267","subsections":[{"section":"delete-collection-272"},{"section":"delete-271"},{"section":"patch-270"},{"section":"replace-269"},{"section":"create-268"}]}]},{"section":"podtemplate-v1","subsections":[{"section":"-strong-read-operations-strong--261","subsections":[{"section":"watch-list-all-namespaces-266"},{"section":"watch-265"},{"section":"list-all-namespaces-264"},{"section":"list-263"},{"section":"read-262"}]},{"section":"-strong-write-operations-strong--255","subsections":[{"section":"delete-collection-260"},{"section":"delete-259"},{"section":"patch-258"},{"section":"replace-257"},{"section":"create-256"}]}]},{"section":"horizontalpodautoscaler-v1","subsections":[{"section":"-strong-read-operations-strong--249","subsections":[{"section":"watch-list-all-namespaces-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":"limitrange-v1","subsections":[{"section":"-strong-read-operations-strong--237","subsections":[{"section":"watch-list-all-namespaces-242"},{"section":"watch-241"},{"section":"list-all-namespaces-240"},{"section":"list-239"},{"section":"read-238"}]},{"section":"-strong-write-operations-strong--231","subsections":[{"section":"delete-collection-236"},{"section":"delete-235"},{"section":"patch-234"},{"section":"replace-233"},{"section":"create-232"}]}]},{"section":"event-v1","subsections":[{"section":"-strong-read-operations-strong--225","subsections":[{"section":"watch-list-all-namespaces-230"},{"section":"watch-229"},{"section":"list-all-namespaces-228"},{"section":"list-227"},{"section":"read-226"}]},{"section":"-strong-write-operations-strong--219","subsections":[{"section":"delete-collection-224"},{"section":"delete-223"},{"section":"patch-222"},{"section":"replace-221"},{"section":"create-220"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[{"section":"-strong-read-operations-strong--215","subsections":[{"section":"watch-218"},{"section":"list-217"},{"section":"read-216"}]},{"section":"-strong-write-operations-strong--209","subsections":[{"section":"delete-collection-214"},{"section":"delete-213"},{"section":"patch-212"},{"section":"replace-211"},{"section":"create-210"}]}]},{"section":"persistentvolumeclaim-v1","subsections":[{"section":"-strong-status-operations-strong--205","subsections":[{"section":"replace-status-208"},{"section":"read-status-207"},{"section":"patch-status-206"}]},{"section":"-strong-read-operations-strong--199","subsections":[{"section":"watch-list-all-namespaces-204"},{"section":"watch-203"},{"section":"list-all-namespaces-202"},{"section":"list-201"},{"section":"read-200"}]},{"section":"-strong-write-operations-strong--193","subsections":[{"section":"delete-collection-198"},{"section":"delete-197"},{"section":"patch-196"},{"section":"replace-195"},{"section":"create-194"}]}]},{"section":"secret-v1","subsections":[{"section":"-strong-read-operations-strong--186","subsections":[{"section":"watch-list-all-namespaces-192"},{"section":"watch-list-191"},{"section":"watch-190"},{"section":"list-all-namespaces-189"},{"section":"list-188"},{"section":"read-187"}]},{"section":"-strong-write-operations-strong--180","subsections":[{"section":"delete-collection-185"},{"section":"delete-184"},{"section":"patch-183"},{"section":"replace-182"},{"section":"create-181"}]}]},{"section":"configmap-v1","subsections":[{"section":"-strong-read-operations-strong--174","subsections":[{"section":"watch-list-all-namespaces-179"},{"section":"watch-178"},{"section":"list-all-namespaces-177"},{"section":"list-176"},{"section":"read-175"}]},{"section":"-strong-write-operations-strong--168","subsections":[{"section":"delete-collection-173"},{"section":"delete-172"},{"section":"patch-171"},{"section":"replace-170"},{"section":"create-169"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[{"section":"-strong-proxy-operations-strong--149","subsections":[{"section":"replace-proxy-path-167"},{"section":"replace-proxy-166"},{"section":"replace-connect-proxy-path-165"},{"section":"replace-connect-proxy-164"},{"section":"head-connect-proxy-path-163"},{"section":"head-connect-proxy-162"},{"section":"get-proxy-path-161"},{"section":"get-proxy-160"},{"section":"get-connect-proxy-path-159"},{"section":"get-connect-proxy-158"},{"section":"delete-proxy-path-157"},{"section":"delete-proxy-156"},{"section":"delete-connect-proxy-path-155"},{"section":"delete-connect-proxy-154"},{"section":"create-proxy-path-153"},{"section":"create-proxy-152"},{"section":"create-connect-proxy-path-151"},{"section":"create-connect-proxy-150"}]},{"section":"-strong-status-operations-strong--145","subsections":[{"section":"replace-status-148"},{"section":"read-status-147"},{"section":"patch-status-146"}]},{"section":"-strong-read-operations-strong--139","subsections":[{"section":"watch-list-all-namespaces-144"},{"section":"watch-143"},{"section":"list-all-namespaces-142"},{"section":"list-141"},{"section":"read-140"}]},{"section":"-strong-write-operations-strong--134","subsections":[{"section":"delete-138"},{"section":"patch-137"},{"section":"replace-136"},{"section":"create-135"}]}]},{"section":"ingress-v1beta1","subsections":[{"section":"-strong-read-operations-strong--128","subsections":[{"section":"watch-list-all-namespaces-133"},{"section":"watch-132"},{"section":"list-all-namespaces-131"},{"section":"list-130"},{"section":"read-129"}]},{"section":"-strong-write-operations-strong--122","subsections":[{"section":"delete-collection-127"},{"section":"delete-126"},{"section":"patch-125"},{"section":"replace-124"},{"section":"create-123"}]}]},{"section":"endpoints-v1","subsections":[{"section":"-strong-read-operations-strong--115","subsections":[{"section":"watch-list-all-namespaces-121"},{"section":"watch-list-120"},{"section":"watch-119"},{"section":"list-all-namespaces-118"},{"section":"list-117"},{"section":"read-116"}]},{"section":"-strong-write-operations-strong--109","subsections":[{"section":"delete-collection-114"},{"section":"delete-113"},{"section":"patch-112"},{"section":"replace-111"},{"section":"create-110"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[{"section":"-strong-status-operations-strong--105","subsections":[{"section":"replace-status-108"},{"section":"read-status-107"},{"section":"patch-status-106"}]},{"section":"-strong-read-operations-strong--98","subsections":[{"section":"watch-list-all-namespaces-104"},{"section":"watch-list-103"},{"section":"watch-102"},{"section":"list-all-namespaces-101"},{"section":"list-100"},{"section":"read-99"}]},{"section":"-strong-write-operations-strong--92","subsections":[{"section":"delete-collection-97"},{"section":"delete-96"},{"section":"patch-95"},{"section":"replace-94"},{"section":"create-93"}]}]},{"section":"replicationcontroller-v1","subsections":[{"section":"-strong-read-operations-strong--86","subsections":[{"section":"watch-list-all-namespaces-91"},{"section":"watch-90"},{"section":"list-all-namespaces-89"},{"section":"list-88"},{"section":"read-87"}]},{"section":"-strong-write-operations-strong--80","subsections":[{"section":"delete-collection-85"},{"section":"delete-84"},{"section":"patch-83"},{"section":"replace-82"},{"section":"create-81"}]}]},{"section":"replicaset-v1beta1","subsections":[{"section":"-strong-misc-operations-strong--76","subsections":[{"section":"patch-scale-79"},{"section":"replace-scale-78"},{"section":"read-scale-77"}]},{"section":"-strong-read-operations-strong--69","subsections":[{"section":"watch-list-all-namespaces-75"},{"section":"watch-list-74"},{"section":"watch-73"},{"section":"list-all-namespaces-72"},{"section":"list-71"},{"section":"read-70"}]},{"section":"-strong-write-operations-strong--63","subsections":[{"section":"delete-collection-68"},{"section":"delete-67"},{"section":"patch-66"},{"section":"replace-65"},{"section":"create-64"}]}]},{"section":"pod-v1","subsections":[{"section":"-strong-misc-operations-strong--62","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-read-operations-strong--55","subsections":[{"section":"watch-list-all-namespaces-61"},{"section":"watch-list-60"},{"section":"watch-59"},{"section":"list-all-namespaces-58"},{"section":"list-57"},{"section":"read-56"}]},{"section":"-strong-write-operations-strong--49","subsections":[{"section":"delete-collection-54"},{"section":"delete-53"},{"section":"patch-52"},{"section":"replace-51"},{"section":"create-50"}]}]},{"section":"job-v1","subsections":[{"section":"-strong-read-operations-strong--42","subsections":[{"section":"watch-list-all-namespaces-48"},{"section":"watch-list-47"},{"section":"watch-46"},{"section":"list-all-namespaces-45"},{"section":"list-44"},{"section":"read-43"}]},{"section":"-strong-write-operations-strong--36","subsections":[{"section":"delete-collection-41"},{"section":"delete-40"},{"section":"patch-39"},{"section":"replace-38"},{"section":"create-37"}]}]},{"section":"deployment-v1beta1","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"},{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"section":"-strong-status-operations-strong--32","subsections":[{"section":"replace-status-35"},{"section":"read-status-34"},{"section":"patch-status-33"}]},{"section":"-strong-read-operations-strong--25","subsections":[{"section":"watch-list-all-namespaces-31"},{"section":"watch-list-30"},{"section":"watch-29"},{"section":"list-all-namespaces-28"},{"section":"list-27"},{"section":"read-26"}]},{"section":"-strong-write-operations-strong--19","subsections":[{"section":"delete-collection-24"},{"section":"delete-23"},{"section":"patch-22"},{"section":"replace-21"},{"section":"create-20"}]}]},{"section":"daemonset-v1beta1","subsections":[{"section":"-strong-status-operations-strong--15","subsections":[{"section":"replace-status-18"},{"section":"read-status-17"},{"section":"patch-status-16"}]},{"section":"-strong-read-operations-strong--9","subsections":[{"section":"watch-list-all-namespaces-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","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","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","watch-list-all-namespaces-489","watch-488","list-all-namespaces-487","list-486","read-485","-strong-read-operations-strong--484","delete-collection-483","delete-482","patch-481","replace-480","create-479","-strong-write-operations-strong--478","job-v2alpha1","watch-list-all-namespaces-477","watch-476","list-all-namespaces-475","list-474","read-473","-strong-read-operations-strong--472","delete-collection-471","delete-470","patch-469","replace-468","create-467","-strong-write-operations-strong--466","job-v1beta1","watch-list-all-namespaces-465","watch-464","list-all-namespaces-463","list-462","read-461","-strong-read-operations-strong--460","delete-collection-459","delete-458","patch-457","replace-456","create-455","-strong-write-operations-strong--454","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","vspherevirtualdiskvolumesource-v1","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretvolumesource-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","rbdvolumesource-v1","quobytevolumesource-v1","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","photonpersistentdiskvolumesource-v1","persistentvolumeclaimvolumesource-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","nfsvolumesource-v1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","keytopath-v1","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","iscsivolumesource-v1","hostpathvolumesource-v1","handler-v1","httpingressrulevalue-v1beta1","httpingresspath-v1beta1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","glusterfsvolumesource-v1","gitrepovolumesource-v1","gcepersistentdiskvolumesource-v1","flockervolumesource-v1","flexvolumesource-v1","fcvolumesource-v1","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","emptydirvolumesource-v1","downwardapivolumesource-v1","downwardapivolumefile-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapvolumesource-v1","configmapkeyselector-v1","componentcondition-v1","cindervolumesource-v1","certificatesigningrequestcondition-v1alpha1","cephfsvolumesource-v1","capabilities-v1","cputargetutilization-v1beta1","azurefilevolumesource-v1","azurediskvolumesource-v1","attachedvolume-v1","awselasticblockstorevolumesource-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","watch-list-all-namespaces-453","watch-452","list-all-namespaces-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","networkpolicy-v1beta1","create-441","-strong-write-operations-strong--440","tokenreview-v1beta1","create-439","-strong-write-operations-strong--438","subjectaccessreview-v1beta1","watch-list-all-namespaces-437","watch-list-436","watch-435","list-all-namespaces-434","list-433","read-432","-strong-read-operations-strong--431","delete-collection-430","delete-429","patch-428","replace-427","create-426","-strong-write-operations-strong--425","serviceaccount-v1","create-424","-strong-write-operations-strong--423","selfsubjectaccessreview-v1beta1","watch-list-all-namespaces-422","watch-list-421","watch-420","list-all-namespaces-419","list-418","read-417","-strong-read-operations-strong--416","delete-collection-415","delete-414","patch-413","replace-412","create-411","-strong-write-operations-strong--410","rolebinding-v1alpha1","watch-list-all-namespaces-409","watch-list-408","watch-407","list-all-namespaces-406","list-405","read-404","-strong-read-operations-strong--403","delete-collection-402","delete-401","patch-400","replace-399","create-398","-strong-write-operations-strong--397","role-v1alpha1","replace-status-396","read-status-395","patch-status-394","-strong-status-operations-strong--393","watch-list-all-namespaces-392","watch-391","list-all-namespaces-390","list-389","read-388","-strong-read-operations-strong--387","delete-collection-386","delete-385","patch-384","replace-383","create-382","-strong-write-operations-strong--381","resourcequota-v1","replace-status-380","read-status-379","patch-status-378","-strong-status-operations-strong--377","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","persistentvolume-v1","replace-proxy-path-365","replace-proxy-364","replace-connect-proxy-path-363","replace-connect-proxy-362","head-connect-proxy-path-361","head-connect-proxy-360","get-proxy-path-359","get-proxy-358","get-connect-proxy-path-357","get-connect-proxy-356","delete-proxy-path-355","delete-proxy-354","delete-connect-proxy-path-353","delete-connect-proxy-352","create-proxy-path-351","create-proxy-350","create-connect-proxy-path-349","create-connect-proxy-348","-strong-proxy-operations-strong--347","watch-346","list-345","read-344","-strong-read-operations-strong--343","delete-collection-342","delete-341","patch-340","replace-339","create-338","-strong-write-operations-strong--337","node-v1","watch-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","namespace-v1","create-326","-strong-write-operations-strong--325","localsubjectaccessreview-v1beta1","list-324","read-323","-strong-read-operations-strong--322","componentstatus-v1","watch-list-321","watch-320","list-319","read-318","-strong-read-operations-strong--317","delete-collection-316","delete-315","patch-314","replace-313","create-312","-strong-write-operations-strong--311","clusterrolebinding-v1alpha1","watch-310","list-309","read-308","-strong-read-operations-strong--307","delete-collection-306","delete-305","patch-304","replace-303","create-302","-strong-write-operations-strong--301","clusterrole-v1alpha1","watch-300","list-299","read-298","-strong-read-operations-strong--297","delete-collection-296","delete-295","patch-294","replace-293","create-292","-strong-write-operations-strong--291","certificatesigningrequest-v1alpha1","create-290","-strong-write-operations-strong--289","binding-v1","-strong-cluster-strong-","watch-288","list-287","read-286","-strong-read-operations-strong--285","delete-collection-284","delete-283","patch-282","replace-281","create-280","-strong-write-operations-strong--279","thirdpartyresource-v1beta1","watch-list-all-namespaces-278","watch-277","list-all-namespaces-276","list-275","read-274","-strong-read-operations-strong--273","delete-collection-272","delete-271","patch-270","replace-269","create-268","-strong-write-operations-strong--267","poddisruptionbudget-v1beta1","watch-list-all-namespaces-266","watch-265","list-all-namespaces-264","list-263","read-262","-strong-read-operations-strong--261","delete-collection-260","delete-259","patch-258","replace-257","create-256","-strong-write-operations-strong--255","podtemplate-v1","watch-list-all-namespaces-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","horizontalpodautoscaler-v1","watch-list-all-namespaces-242","watch-241","list-all-namespaces-240","list-239","read-238","-strong-read-operations-strong--237","delete-collection-236","delete-235","patch-234","replace-233","create-232","-strong-write-operations-strong--231","limitrange-v1","watch-list-all-namespaces-230","watch-229","list-all-namespaces-228","list-227","read-226","-strong-read-operations-strong--225","delete-collection-224","delete-223","patch-222","replace-221","create-220","-strong-write-operations-strong--219","event-v1","-strong-metadata-strong-","volume-v1","watch-218","list-217","read-216","-strong-read-operations-strong--215","delete-collection-214","delete-213","patch-212","replace-211","create-210","-strong-write-operations-strong--209","storageclass-v1beta1","replace-status-208","read-status-207","patch-status-206","-strong-status-operations-strong--205","watch-list-all-namespaces-204","watch-203","list-all-namespaces-202","list-201","read-200","-strong-read-operations-strong--199","delete-collection-198","delete-197","patch-196","replace-195","create-194","-strong-write-operations-strong--193","persistentvolumeclaim-v1","watch-list-all-namespaces-192","watch-list-191","watch-190","list-all-namespaces-189","list-188","read-187","-strong-read-operations-strong--186","delete-collection-185","delete-184","patch-183","replace-182","create-181","-strong-write-operations-strong--180","secret-v1","watch-list-all-namespaces-179","watch-178","list-all-namespaces-177","list-176","read-175","-strong-read-operations-strong--174","delete-collection-173","delete-172","patch-171","replace-170","create-169","-strong-write-operations-strong--168","configmap-v1","-strong-config-storage-strong-","replace-proxy-path-167","replace-proxy-166","replace-connect-proxy-path-165","replace-connect-proxy-164","head-connect-proxy-path-163","head-connect-proxy-162","get-proxy-path-161","get-proxy-160","get-connect-proxy-path-159","get-connect-proxy-158","delete-proxy-path-157","delete-proxy-156","delete-connect-proxy-path-155","delete-connect-proxy-154","create-proxy-path-153","create-proxy-152","create-connect-proxy-path-151","create-connect-proxy-150","-strong-proxy-operations-strong--149","replace-status-148","read-status-147","patch-status-146","-strong-status-operations-strong--145","watch-list-all-namespaces-144","watch-143","list-all-namespaces-142","list-141","read-140","-strong-read-operations-strong--139","delete-138","patch-137","replace-136","create-135","-strong-write-operations-strong--134","service-v1","watch-list-all-namespaces-133","watch-132","list-all-namespaces-131","list-130","read-129","-strong-read-operations-strong--128","delete-collection-127","delete-126","patch-125","replace-124","create-123","-strong-write-operations-strong--122","ingress-v1beta1","watch-list-all-namespaces-121","watch-list-120","watch-119","list-all-namespaces-118","list-117","read-116","-strong-read-operations-strong--115","delete-collection-114","delete-113","patch-112","replace-111","create-110","-strong-write-operations-strong--109","endpoints-v1","-strong-discovery-load-balancing-strong-","replace-status-108","read-status-107","patch-status-106","-strong-status-operations-strong--105","watch-list-all-namespaces-104","watch-list-103","watch-102","list-all-namespaces-101","list-100","read-99","-strong-read-operations-strong--98","delete-collection-97","delete-96","patch-95","replace-94","create-93","-strong-write-operations-strong--92","statefulset-v1beta1","watch-list-all-namespaces-91","watch-90","list-all-namespaces-89","list-88","read-87","-strong-read-operations-strong--86","delete-collection-85","delete-84","patch-83","replace-82","create-81","-strong-write-operations-strong--80","replicationcontroller-v1","patch-scale-79","replace-scale-78","read-scale-77","-strong-misc-operations-strong--76","watch-list-all-namespaces-75","watch-list-74","watch-73","list-all-namespaces-72","list-71","read-70","-strong-read-operations-strong--69","delete-collection-68","delete-67","patch-66","replace-65","create-64","-strong-write-operations-strong--63","replicaset-v1beta1","read-log","-strong-misc-operations-strong--62","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-","watch-list-all-namespaces-61","watch-list-60","watch-59","list-all-namespaces-58","list-57","read-56","-strong-read-operations-strong--55","delete-collection-54","delete-53","patch-52","replace-51","create-50","-strong-write-operations-strong--49","pod-v1","watch-list-all-namespaces-48","watch-list-47","watch-46","list-all-namespaces-45","list-44","read-43","-strong-read-operations-strong--42","delete-collection-41","delete-40","patch-39","replace-38","create-37","-strong-write-operations-strong--36","job-v1","rollback","patch-scale","replace-scale","read-scale","-strong-misc-operations-strong-","replace-status-35","read-status-34","patch-status-33","-strong-status-operations-strong--32","watch-list-all-namespaces-31","watch-list-30","watch-29","list-all-namespaces-28","list-27","read-26","-strong-read-operations-strong--25","delete-collection-24","delete-23","patch-22","replace-21","create-20","-strong-write-operations-strong--19","deployment-v1beta1","replace-status-18","read-status-17","patch-status-16","-strong-status-operations-strong--15","watch-list-all-namespaces-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","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","container-v1","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]}})(); \ No newline at end of file +(function(){navData = {"toc":[{"section":"scale-v1beta1","subsections":[]},{"section":"jobcondition-v2alpha1","subsections":[]},{"section":"jobcondition-v1beta1","subsections":[]},{"section":"job-v2alpha1","subsections":[{"section":"-strong-status-operations-strong--558","subsections":[{"section":"replace-status-561"},{"section":"read-status-560"},{"section":"patch-status-559"}]},{"section":"-strong-read-operations-strong--551","subsections":[{"section":"watch-list-all-namespaces-557"},{"section":"watch-list-556"},{"section":"watch-555"},{"section":"list-all-namespaces-554"},{"section":"list-553"},{"section":"read-552"}]},{"section":"-strong-write-operations-strong--545","subsections":[{"section":"delete-collection-550"},{"section":"delete-549"},{"section":"patch-548"},{"section":"replace-547"},{"section":"create-546"}]}]},{"section":"job-v1beta1","subsections":[{"section":"-strong-status-operations-strong--541","subsections":[{"section":"replace-status-544"},{"section":"read-status-543"},{"section":"patch-status-542"}]},{"section":"-strong-read-operations-strong--534","subsections":[{"section":"watch-list-all-namespaces-540"},{"section":"watch-list-539"},{"section":"watch-538"},{"section":"list-all-namespaces-537"},{"section":"list-536"},{"section":"read-535"}]},{"section":"-strong-write-operations-strong--528","subsections":[{"section":"delete-collection-533"},{"section":"delete-532"},{"section":"patch-531"},{"section":"replace-530"},{"section":"create-529"}]}]},{"section":"horizontalpodautoscaler-v1beta1","subsections":[{"section":"-strong-status-operations-strong--524","subsections":[{"section":"replace-status-527"},{"section":"read-status-526"},{"section":"patch-status-525"}]},{"section":"-strong-read-operations-strong--517","subsections":[{"section":"watch-list-all-namespaces-523"},{"section":"watch-list-522"},{"section":"watch-521"},{"section":"list-all-namespaces-520"},{"section":"list-519"},{"section":"read-518"}]},{"section":"-strong-write-operations-strong--511","subsections":[{"section":"delete-collection-516"},{"section":"delete-515"},{"section":"patch-514"},{"section":"replace-513"},{"section":"create-512"}]}]},{"section":"event-versioned","subsections":[]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"-strong-definitions-strong-","subsections":[{"section":"vspherevirtualdiskvolumesource-v1"},{"section":"volumemount-v1"},{"section":"userinfo-v1beta1"},{"section":"time-unversioned"},{"section":"tcpsocketaction-v1"},{"section":"subresourcereference-v1beta1"},{"section":"subject-v1alpha1"},{"section":"statusdetails-unversioned"},{"section":"statuscause-unversioned"},{"section":"status-unversioned"},{"section":"serviceport-v1"},{"section":"serveraddressbyclientcidr-unversioned"},{"section":"securitycontext-v1"},{"section":"secretvolumesource-v1"},{"section":"secretkeyselector-v1"},{"section":"scale-v1"},{"section":"selinuxoptions-v1"},{"section":"rollbackconfig-v1beta1"},{"section":"roleref-v1alpha1"},{"section":"resourcerequirements-v1"},{"section":"resourcefieldselector-v1"},{"section":"resourceattributes-v1beta1"},{"section":"replicationcontrollercondition-v1"},{"section":"replicasetcondition-v1beta1"},{"section":"rawextension-runtime"},{"section":"rbdvolumesource-v1"},{"section":"quobytevolumesource-v1"},{"section":"quantity-resource"},{"section":"probe-v1"},{"section":"preconditions-v1"},{"section":"policyrule-v1alpha1"},{"section":"podsecuritycontext-v1"},{"section":"podcondition-v1"},{"section":"photonpersistentdiskvolumesource-v1"},{"section":"persistentvolumeclaimvolumesource-v1"},{"section":"patch-unversioned"},{"section":"ownerreference-v1"},{"section":"objectreference-v1"},{"section":"objectmeta-v1"},{"section":"objectfieldselector-v1"},{"section":"nonresourceattributes-v1beta1"},{"section":"nodesysteminfo-v1"},{"section":"nodedaemonendpoints-v1"},{"section":"nodecondition-v1"},{"section":"nodeaddress-v1"},{"section":"networkpolicyport-v1beta1"},{"section":"networkpolicypeer-v1beta1"},{"section":"networkpolicyingressrule-v1beta1"},{"section":"nfsvolumesource-v1"},{"section":"localobjectreference-v1"},{"section":"loadbalancerstatus-v1"},{"section":"loadbalanceringress-v1"},{"section":"listmeta-unversioned"},{"section":"limitrangeitem-v1"},{"section":"lifecycle-v1"},{"section":"labelselectorrequirement-unversioned"},{"section":"labelselector-unversioned"},{"section":"keytopath-v1"},{"section":"jobtemplatespec-v2alpha1"},{"section":"jobcondition-v1"},{"section":"intorstring-intstr"},{"section":"ingresstls-v1beta1"},{"section":"ingressrule-v1beta1"},{"section":"ingressbackend-v1beta1"},{"section":"info-version"},{"section":"iscsivolumesource-v1"},{"section":"hostpathvolumesource-v1"},{"section":"handler-v1"},{"section":"httpingressrulevalue-v1beta1"},{"section":"httpingresspath-v1beta1"},{"section":"httpheader-v1"},{"section":"httpgetaction-v1"},{"section":"groupversionfordiscovery-unversioned"},{"section":"glusterfsvolumesource-v1"},{"section":"gitrepovolumesource-v1"},{"section":"gcepersistentdiskvolumesource-v1"},{"section":"flockervolumesource-v1"},{"section":"flexvolumesource-v1"},{"section":"fcvolumesource-v1"},{"section":"execaction-v1"},{"section":"eviction-v1beta1"},{"section":"eventsource-v1"},{"section":"envvarsource-v1"},{"section":"envvar-v1"},{"section":"endpointsubset-v1"},{"section":"endpointport-v1"},{"section":"endpointaddress-v1"},{"section":"emptydirvolumesource-v1"},{"section":"downwardapivolumesource-v1"},{"section":"downwardapivolumefile-v1"},{"section":"deploymentcondition-v1beta1"},{"section":"deleteoptions-v1"},{"section":"daemonendpoint-v1"},{"section":"crossversionobjectreference-v1"},{"section":"containerstatewaiting-v1"},{"section":"containerstateterminated-v1"},{"section":"containerstaterunning-v1"},{"section":"containerstate-v1"},{"section":"containerport-v1"},{"section":"containerimage-v1"},{"section":"configmapvolumesource-v1"},{"section":"configmapkeyselector-v1"},{"section":"componentcondition-v1"},{"section":"cindervolumesource-v1"},{"section":"certificatesigningrequestcondition-v1alpha1"},{"section":"cephfsvolumesource-v1"},{"section":"capabilities-v1"},{"section":"cputargetutilization-v1beta1"},{"section":"azurefilevolumesource-v1"},{"section":"azurediskvolumesource-v1"},{"section":"attachedvolume-v1"},{"section":"awselasticblockstorevolumesource-v1"},{"section":"apiversions-unversioned"},{"section":"apiversion-v1beta1"},{"section":"apiresource-unversioned"},{"section":"apigroup-unversioned"}]},{"section":"networkpolicy-v1beta1","subsections":[{"section":"-strong-read-operations-strong--504","subsections":[{"section":"watch-list-all-namespaces-510"},{"section":"watch-list-509"},{"section":"watch-508"},{"section":"list-all-namespaces-507"},{"section":"list-506"},{"section":"read-505"}]},{"section":"-strong-write-operations-strong--498","subsections":[{"section":"delete-collection-503"},{"section":"delete-502"},{"section":"patch-501"},{"section":"replace-500"},{"section":"create-499"}]}]},{"section":"tokenreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--496","subsections":[{"section":"create-497"}]}]},{"section":"subjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--494","subsections":[{"section":"create-495"}]}]},{"section":"serviceaccount-v1","subsections":[{"section":"-strong-read-operations-strong--487","subsections":[{"section":"watch-list-all-namespaces-493"},{"section":"watch-list-492"},{"section":"watch-491"},{"section":"list-all-namespaces-490"},{"section":"list-489"},{"section":"read-488"}]},{"section":"-strong-write-operations-strong--481","subsections":[{"section":"delete-collection-486"},{"section":"delete-485"},{"section":"patch-484"},{"section":"replace-483"},{"section":"create-482"}]}]},{"section":"selfsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--479","subsections":[{"section":"create-480"}]}]},{"section":"rolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--472","subsections":[{"section":"watch-list-all-namespaces-478"},{"section":"watch-list-477"},{"section":"watch-476"},{"section":"list-all-namespaces-475"},{"section":"list-474"},{"section":"read-473"}]},{"section":"-strong-write-operations-strong--466","subsections":[{"section":"delete-collection-471"},{"section":"delete-470"},{"section":"patch-469"},{"section":"replace-468"},{"section":"create-467"}]}]},{"section":"role-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--459","subsections":[{"section":"watch-list-all-namespaces-465"},{"section":"watch-list-464"},{"section":"watch-463"},{"section":"list-all-namespaces-462"},{"section":"list-461"},{"section":"read-460"}]},{"section":"-strong-write-operations-strong--453","subsections":[{"section":"delete-collection-458"},{"section":"delete-457"},{"section":"patch-456"},{"section":"replace-455"},{"section":"create-454"}]}]},{"section":"resourcequota-v1","subsections":[{"section":"-strong-status-operations-strong--449","subsections":[{"section":"replace-status-452"},{"section":"read-status-451"},{"section":"patch-status-450"}]},{"section":"-strong-read-operations-strong--442","subsections":[{"section":"watch-list-all-namespaces-448"},{"section":"watch-list-447"},{"section":"watch-446"},{"section":"list-all-namespaces-445"},{"section":"list-444"},{"section":"read-443"}]},{"section":"-strong-write-operations-strong--436","subsections":[{"section":"delete-collection-441"},{"section":"delete-440"},{"section":"patch-439"},{"section":"replace-438"},{"section":"create-437"}]}]},{"section":"persistentvolume-v1","subsections":[{"section":"-strong-status-operations-strong--432","subsections":[{"section":"replace-status-435"},{"section":"read-status-434"},{"section":"patch-status-433"}]},{"section":"-strong-read-operations-strong--427","subsections":[{"section":"watch-list-431"},{"section":"watch-430"},{"section":"list-429"},{"section":"read-428"}]},{"section":"-strong-write-operations-strong--421","subsections":[{"section":"delete-collection-426"},{"section":"delete-425"},{"section":"patch-424"},{"section":"replace-423"},{"section":"create-422"}]}]},{"section":"node-v1","subsections":[{"section":"-strong-proxy-operations-strong--402","subsections":[{"section":"replace-proxy-path-420"},{"section":"replace-proxy-419"},{"section":"replace-connect-proxy-path-418"},{"section":"replace-connect-proxy-417"},{"section":"head-connect-proxy-path-416"},{"section":"head-connect-proxy-415"},{"section":"get-proxy-path-414"},{"section":"get-proxy-413"},{"section":"get-connect-proxy-path-412"},{"section":"get-connect-proxy-411"},{"section":"delete-proxy-path-410"},{"section":"delete-proxy-409"},{"section":"delete-connect-proxy-path-408"},{"section":"delete-connect-proxy-407"},{"section":"create-proxy-path-406"},{"section":"create-proxy-405"},{"section":"create-connect-proxy-path-404"},{"section":"create-connect-proxy-403"}]},{"section":"-strong-status-operations-strong--398","subsections":[{"section":"replace-status-401"},{"section":"read-status-400"},{"section":"patch-status-399"}]},{"section":"-strong-read-operations-strong--393","subsections":[{"section":"watch-list-397"},{"section":"watch-396"},{"section":"list-395"},{"section":"read-394"}]},{"section":"-strong-write-operations-strong--387","subsections":[{"section":"delete-collection-392"},{"section":"delete-391"},{"section":"patch-390"},{"section":"replace-389"},{"section":"create-388"}]}]},{"section":"namespace-v1","subsections":[{"section":"-strong-status-operations-strong--383","subsections":[{"section":"replace-status-386"},{"section":"read-status-385"},{"section":"patch-status-384"}]},{"section":"-strong-read-operations-strong--378","subsections":[{"section":"watch-list-382"},{"section":"watch-381"},{"section":"list-380"},{"section":"read-379"}]},{"section":"-strong-write-operations-strong--372","subsections":[{"section":"delete-collection-377"},{"section":"delete-376"},{"section":"patch-375"},{"section":"replace-374"},{"section":"create-373"}]}]},{"section":"localsubjectaccessreview-v1beta1","subsections":[{"section":"-strong-write-operations-strong--370","subsections":[{"section":"create-371"}]}]},{"section":"componentstatus-v1","subsections":[{"section":"-strong-read-operations-strong--367","subsections":[{"section":"list-369"},{"section":"read-368"}]}]},{"section":"clusterrolebinding-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--362","subsections":[{"section":"watch-list-366"},{"section":"watch-365"},{"section":"list-364"},{"section":"read-363"}]},{"section":"-strong-write-operations-strong--356","subsections":[{"section":"delete-collection-361"},{"section":"delete-360"},{"section":"patch-359"},{"section":"replace-358"},{"section":"create-357"}]}]},{"section":"clusterrole-v1alpha1","subsections":[{"section":"-strong-read-operations-strong--351","subsections":[{"section":"watch-list-355"},{"section":"watch-354"},{"section":"list-353"},{"section":"read-352"}]},{"section":"-strong-write-operations-strong--345","subsections":[{"section":"delete-collection-350"},{"section":"delete-349"},{"section":"patch-348"},{"section":"replace-347"},{"section":"create-346"}]}]},{"section":"certificatesigningrequest-v1alpha1","subsections":[{"section":"-strong-status-operations-strong--343","subsections":[{"section":"replace-status-344"}]},{"section":"-strong-read-operations-strong--338","subsections":[{"section":"watch-list-342"},{"section":"watch-341"},{"section":"list-340"},{"section":"read-339"}]},{"section":"-strong-write-operations-strong--332","subsections":[{"section":"delete-collection-337"},{"section":"delete-336"},{"section":"patch-335"},{"section":"replace-334"},{"section":"create-333"}]}]},{"section":"binding-v1","subsections":[{"section":"-strong-write-operations-strong--330","subsections":[{"section":"create-331"}]}]},{"section":"-strong-cluster-strong-","subsections":[]},{"section":"thirdpartyresource-v1beta1","subsections":[{"section":"-strong-read-operations-strong--325","subsections":[{"section":"watch-list-329"},{"section":"watch-328"},{"section":"list-327"},{"section":"read-326"}]},{"section":"-strong-write-operations-strong--319","subsections":[{"section":"delete-collection-324"},{"section":"delete-323"},{"section":"patch-322"},{"section":"replace-321"},{"section":"create-320"}]}]},{"section":"poddisruptionbudget-v1beta1","subsections":[{"section":"-strong-status-operations-strong--315","subsections":[{"section":"replace-status-318"},{"section":"read-status-317"},{"section":"patch-status-316"}]},{"section":"-strong-read-operations-strong--308","subsections":[{"section":"watch-list-all-namespaces-314"},{"section":"watch-list-313"},{"section":"watch-312"},{"section":"list-all-namespaces-311"},{"section":"list-310"},{"section":"read-309"}]},{"section":"-strong-write-operations-strong--302","subsections":[{"section":"delete-collection-307"},{"section":"delete-306"},{"section":"patch-305"},{"section":"replace-304"},{"section":"create-303"}]}]},{"section":"podtemplate-v1","subsections":[{"section":"-strong-read-operations-strong--295","subsections":[{"section":"watch-list-all-namespaces-301"},{"section":"watch-list-300"},{"section":"watch-299"},{"section":"list-all-namespaces-298"},{"section":"list-297"},{"section":"read-296"}]},{"section":"-strong-write-operations-strong--289","subsections":[{"section":"delete-collection-294"},{"section":"delete-293"},{"section":"patch-292"},{"section":"replace-291"},{"section":"create-290"}]}]},{"section":"horizontalpodautoscaler-v1","subsections":[{"section":"-strong-status-operations-strong--285","subsections":[{"section":"replace-status-288"},{"section":"read-status-287"},{"section":"patch-status-286"}]},{"section":"-strong-read-operations-strong--278","subsections":[{"section":"watch-list-all-namespaces-284"},{"section":"watch-list-283"},{"section":"watch-282"},{"section":"list-all-namespaces-281"},{"section":"list-280"},{"section":"read-279"}]},{"section":"-strong-write-operations-strong--272","subsections":[{"section":"delete-collection-277"},{"section":"delete-276"},{"section":"patch-275"},{"section":"replace-274"},{"section":"create-273"}]}]},{"section":"limitrange-v1","subsections":[{"section":"-strong-read-operations-strong--265","subsections":[{"section":"watch-list-all-namespaces-271"},{"section":"watch-list-270"},{"section":"watch-269"},{"section":"list-all-namespaces-268"},{"section":"list-267"},{"section":"read-266"}]},{"section":"-strong-write-operations-strong--259","subsections":[{"section":"delete-collection-264"},{"section":"delete-263"},{"section":"patch-262"},{"section":"replace-261"},{"section":"create-260"}]}]},{"section":"event-v1","subsections":[{"section":"-strong-read-operations-strong--252","subsections":[{"section":"watch-list-all-namespaces-258"},{"section":"watch-list-257"},{"section":"watch-256"},{"section":"list-all-namespaces-255"},{"section":"list-254"},{"section":"read-253"}]},{"section":"-strong-write-operations-strong--246","subsections":[{"section":"delete-collection-251"},{"section":"delete-250"},{"section":"patch-249"},{"section":"replace-248"},{"section":"create-247"}]}]},{"section":"-strong-metadata-strong-","subsections":[]},{"section":"volume-v1","subsections":[]},{"section":"storageclass-v1beta1","subsections":[{"section":"-strong-read-operations-strong--241","subsections":[{"section":"watch-list-245"},{"section":"watch-244"},{"section":"list-243"},{"section":"read-242"}]},{"section":"-strong-write-operations-strong--235","subsections":[{"section":"delete-collection-240"},{"section":"delete-239"},{"section":"patch-238"},{"section":"replace-237"},{"section":"create-236"}]}]},{"section":"persistentvolumeclaim-v1","subsections":[{"section":"-strong-status-operations-strong--231","subsections":[{"section":"replace-status-234"},{"section":"read-status-233"},{"section":"patch-status-232"}]},{"section":"-strong-read-operations-strong--224","subsections":[{"section":"watch-list-all-namespaces-230"},{"section":"watch-list-229"},{"section":"watch-228"},{"section":"list-all-namespaces-227"},{"section":"list-226"},{"section":"read-225"}]},{"section":"-strong-write-operations-strong--218","subsections":[{"section":"delete-collection-223"},{"section":"delete-222"},{"section":"patch-221"},{"section":"replace-220"},{"section":"create-219"}]}]},{"section":"secret-v1","subsections":[{"section":"-strong-read-operations-strong--211","subsections":[{"section":"watch-list-all-namespaces-217"},{"section":"watch-list-216"},{"section":"watch-215"},{"section":"list-all-namespaces-214"},{"section":"list-213"},{"section":"read-212"}]},{"section":"-strong-write-operations-strong--205","subsections":[{"section":"delete-collection-210"},{"section":"delete-209"},{"section":"patch-208"},{"section":"replace-207"},{"section":"create-206"}]}]},{"section":"configmap-v1","subsections":[{"section":"-strong-read-operations-strong--198","subsections":[{"section":"watch-list-all-namespaces-204"},{"section":"watch-list-203"},{"section":"watch-202"},{"section":"list-all-namespaces-201"},{"section":"list-200"},{"section":"read-199"}]},{"section":"-strong-write-operations-strong--192","subsections":[{"section":"delete-collection-197"},{"section":"delete-196"},{"section":"patch-195"},{"section":"replace-194"},{"section":"create-193"}]}]},{"section":"-strong-config-storage-strong-","subsections":[]},{"section":"service-v1","subsections":[{"section":"-strong-proxy-operations-strong--173","subsections":[{"section":"replace-proxy-path-191"},{"section":"replace-proxy-190"},{"section":"replace-connect-proxy-path-189"},{"section":"replace-connect-proxy-188"},{"section":"head-connect-proxy-path-187"},{"section":"head-connect-proxy-186"},{"section":"get-proxy-path-185"},{"section":"get-proxy-184"},{"section":"get-connect-proxy-path-183"},{"section":"get-connect-proxy-182"},{"section":"delete-proxy-path-181"},{"section":"delete-proxy-180"},{"section":"delete-connect-proxy-path-179"},{"section":"delete-connect-proxy-178"},{"section":"create-proxy-path-177"},{"section":"create-proxy-176"},{"section":"create-connect-proxy-path-175"},{"section":"create-connect-proxy-174"}]},{"section":"-strong-status-operations-strong--169","subsections":[{"section":"replace-status-172"},{"section":"read-status-171"},{"section":"patch-status-170"}]},{"section":"-strong-read-operations-strong--162","subsections":[{"section":"watch-list-all-namespaces-168"},{"section":"watch-list-167"},{"section":"watch-166"},{"section":"list-all-namespaces-165"},{"section":"list-164"},{"section":"read-163"}]},{"section":"-strong-write-operations-strong--157","subsections":[{"section":"delete-161"},{"section":"patch-160"},{"section":"replace-159"},{"section":"create-158"}]}]},{"section":"ingress-v1beta1","subsections":[{"section":"-strong-status-operations-strong--153","subsections":[{"section":"replace-status-156"},{"section":"read-status-155"},{"section":"patch-status-154"}]},{"section":"-strong-read-operations-strong--146","subsections":[{"section":"watch-list-all-namespaces-152"},{"section":"watch-list-151"},{"section":"watch-150"},{"section":"list-all-namespaces-149"},{"section":"list-148"},{"section":"read-147"}]},{"section":"-strong-write-operations-strong--140","subsections":[{"section":"delete-collection-145"},{"section":"delete-144"},{"section":"patch-143"},{"section":"replace-142"},{"section":"create-141"}]}]},{"section":"endpoints-v1","subsections":[{"section":"-strong-read-operations-strong--133","subsections":[{"section":"watch-list-all-namespaces-139"},{"section":"watch-list-138"},{"section":"watch-137"},{"section":"list-all-namespaces-136"},{"section":"list-135"},{"section":"read-134"}]},{"section":"-strong-write-operations-strong--127","subsections":[{"section":"delete-collection-132"},{"section":"delete-131"},{"section":"patch-130"},{"section":"replace-129"},{"section":"create-128"}]}]},{"section":"-strong-discovery-load-balancing-strong-","subsections":[]},{"section":"statefulset-v1beta1","subsections":[{"section":"-strong-status-operations-strong--123","subsections":[{"section":"replace-status-126"},{"section":"read-status-125"},{"section":"patch-status-124"}]},{"section":"-strong-read-operations-strong--116","subsections":[{"section":"watch-list-all-namespaces-122"},{"section":"watch-list-121"},{"section":"watch-120"},{"section":"list-all-namespaces-119"},{"section":"list-118"},{"section":"read-117"}]},{"section":"-strong-write-operations-strong--110","subsections":[{"section":"delete-collection-115"},{"section":"delete-114"},{"section":"patch-113"},{"section":"replace-112"},{"section":"create-111"}]}]},{"section":"replicationcontroller-v1","subsections":[{"section":"-strong-status-operations-strong--106","subsections":[{"section":"replace-status-109"},{"section":"read-status-108"},{"section":"patch-status-107"}]},{"section":"-strong-read-operations-strong--99","subsections":[{"section":"watch-list-all-namespaces-105"},{"section":"watch-list-104"},{"section":"watch-103"},{"section":"list-all-namespaces-102"},{"section":"list-101"},{"section":"read-100"}]},{"section":"-strong-write-operations-strong--93","subsections":[{"section":"delete-collection-98"},{"section":"delete-97"},{"section":"patch-96"},{"section":"replace-95"},{"section":"create-94"}]}]},{"section":"replicaset-v1beta1","subsections":[{"section":"-strong-misc-operations-strong--89","subsections":[{"section":"patch-scale-92"},{"section":"replace-scale-91"},{"section":"read-scale-90"}]},{"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","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","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","subsections":[{"section":"-strong-misc-operations-strong-","subsections":[{"section":"rollback"},{"section":"patch-scale"},{"section":"replace-scale"},{"section":"read-scale"}]},{"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","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","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","subsections":[]},{"section":"-strong-workloads-strong-","subsections":[]},{"section":"-strong-api-overview-strong-","subsections":[{"section":"resource-operations"},{"section":"resource-objects"},{"section":"resource-categories"}]}],"flatToc":["scale-v1beta1","jobcondition-v2alpha1","jobcondition-v1beta1","replace-status-561","read-status-560","patch-status-559","-strong-status-operations-strong--558","watch-list-all-namespaces-557","watch-list-556","watch-555","list-all-namespaces-554","list-553","read-552","-strong-read-operations-strong--551","delete-collection-550","delete-549","patch-548","replace-547","create-546","-strong-write-operations-strong--545","job-v2alpha1","replace-status-544","read-status-543","patch-status-542","-strong-status-operations-strong--541","watch-list-all-namespaces-540","watch-list-539","watch-538","list-all-namespaces-537","list-536","read-535","-strong-read-operations-strong--534","delete-collection-533","delete-532","patch-531","replace-530","create-529","-strong-write-operations-strong--528","job-v1beta1","replace-status-527","read-status-526","patch-status-525","-strong-status-operations-strong--524","watch-list-all-namespaces-523","watch-list-522","watch-521","list-all-namespaces-520","list-519","read-518","-strong-read-operations-strong--517","delete-collection-516","delete-515","patch-514","replace-513","create-512","-strong-write-operations-strong--511","horizontalpodautoscaler-v1beta1","event-versioned","-strong-old-api-versions-strong-","vspherevirtualdiskvolumesource-v1","volumemount-v1","userinfo-v1beta1","time-unversioned","tcpsocketaction-v1","subresourcereference-v1beta1","subject-v1alpha1","statusdetails-unversioned","statuscause-unversioned","status-unversioned","serviceport-v1","serveraddressbyclientcidr-unversioned","securitycontext-v1","secretvolumesource-v1","secretkeyselector-v1","scale-v1","selinuxoptions-v1","rollbackconfig-v1beta1","roleref-v1alpha1","resourcerequirements-v1","resourcefieldselector-v1","resourceattributes-v1beta1","replicationcontrollercondition-v1","replicasetcondition-v1beta1","rawextension-runtime","rbdvolumesource-v1","quobytevolumesource-v1","quantity-resource","probe-v1","preconditions-v1","policyrule-v1alpha1","podsecuritycontext-v1","podcondition-v1","photonpersistentdiskvolumesource-v1","persistentvolumeclaimvolumesource-v1","patch-unversioned","ownerreference-v1","objectreference-v1","objectmeta-v1","objectfieldselector-v1","nonresourceattributes-v1beta1","nodesysteminfo-v1","nodedaemonendpoints-v1","nodecondition-v1","nodeaddress-v1","networkpolicyport-v1beta1","networkpolicypeer-v1beta1","networkpolicyingressrule-v1beta1","nfsvolumesource-v1","localobjectreference-v1","loadbalancerstatus-v1","loadbalanceringress-v1","listmeta-unversioned","limitrangeitem-v1","lifecycle-v1","labelselectorrequirement-unversioned","labelselector-unversioned","keytopath-v1","jobtemplatespec-v2alpha1","jobcondition-v1","intorstring-intstr","ingresstls-v1beta1","ingressrule-v1beta1","ingressbackend-v1beta1","info-version","iscsivolumesource-v1","hostpathvolumesource-v1","handler-v1","httpingressrulevalue-v1beta1","httpingresspath-v1beta1","httpheader-v1","httpgetaction-v1","groupversionfordiscovery-unversioned","glusterfsvolumesource-v1","gitrepovolumesource-v1","gcepersistentdiskvolumesource-v1","flockervolumesource-v1","flexvolumesource-v1","fcvolumesource-v1","execaction-v1","eviction-v1beta1","eventsource-v1","envvarsource-v1","envvar-v1","endpointsubset-v1","endpointport-v1","endpointaddress-v1","emptydirvolumesource-v1","downwardapivolumesource-v1","downwardapivolumefile-v1","deploymentcondition-v1beta1","deleteoptions-v1","daemonendpoint-v1","crossversionobjectreference-v1","containerstatewaiting-v1","containerstateterminated-v1","containerstaterunning-v1","containerstate-v1","containerport-v1","containerimage-v1","configmapvolumesource-v1","configmapkeyselector-v1","componentcondition-v1","cindervolumesource-v1","certificatesigningrequestcondition-v1alpha1","cephfsvolumesource-v1","capabilities-v1","cputargetutilization-v1beta1","azurefilevolumesource-v1","azurediskvolumesource-v1","attachedvolume-v1","awselasticblockstorevolumesource-v1","apiversions-unversioned","apiversion-v1beta1","apiresource-unversioned","apigroup-unversioned","-strong-definitions-strong-","watch-list-all-namespaces-510","watch-list-509","watch-508","list-all-namespaces-507","list-506","read-505","-strong-read-operations-strong--504","delete-collection-503","delete-502","patch-501","replace-500","create-499","-strong-write-operations-strong--498","networkpolicy-v1beta1","create-497","-strong-write-operations-strong--496","tokenreview-v1beta1","create-495","-strong-write-operations-strong--494","subjectaccessreview-v1beta1","watch-list-all-namespaces-493","watch-list-492","watch-491","list-all-namespaces-490","list-489","read-488","-strong-read-operations-strong--487","delete-collection-486","delete-485","patch-484","replace-483","create-482","-strong-write-operations-strong--481","serviceaccount-v1","create-480","-strong-write-operations-strong--479","selfsubjectaccessreview-v1beta1","watch-list-all-namespaces-478","watch-list-477","watch-476","list-all-namespaces-475","list-474","read-473","-strong-read-operations-strong--472","delete-collection-471","delete-470","patch-469","replace-468","create-467","-strong-write-operations-strong--466","rolebinding-v1alpha1","watch-list-all-namespaces-465","watch-list-464","watch-463","list-all-namespaces-462","list-461","read-460","-strong-read-operations-strong--459","delete-collection-458","delete-457","patch-456","replace-455","create-454","-strong-write-operations-strong--453","role-v1alpha1","replace-status-452","read-status-451","patch-status-450","-strong-status-operations-strong--449","watch-list-all-namespaces-448","watch-list-447","watch-446","list-all-namespaces-445","list-444","read-443","-strong-read-operations-strong--442","delete-collection-441","delete-440","patch-439","replace-438","create-437","-strong-write-operations-strong--436","resourcequota-v1","replace-status-435","read-status-434","patch-status-433","-strong-status-operations-strong--432","watch-list-431","watch-430","list-429","read-428","-strong-read-operations-strong--427","delete-collection-426","delete-425","patch-424","replace-423","create-422","-strong-write-operations-strong--421","persistentvolume-v1","replace-proxy-path-420","replace-proxy-419","replace-connect-proxy-path-418","replace-connect-proxy-417","head-connect-proxy-path-416","head-connect-proxy-415","get-proxy-path-414","get-proxy-413","get-connect-proxy-path-412","get-connect-proxy-411","delete-proxy-path-410","delete-proxy-409","delete-connect-proxy-path-408","delete-connect-proxy-407","create-proxy-path-406","create-proxy-405","create-connect-proxy-path-404","create-connect-proxy-403","-strong-proxy-operations-strong--402","replace-status-401","read-status-400","patch-status-399","-strong-status-operations-strong--398","watch-list-397","watch-396","list-395","read-394","-strong-read-operations-strong--393","delete-collection-392","delete-391","patch-390","replace-389","create-388","-strong-write-operations-strong--387","node-v1","replace-status-386","read-status-385","patch-status-384","-strong-status-operations-strong--383","watch-list-382","watch-381","list-380","read-379","-strong-read-operations-strong--378","delete-collection-377","delete-376","patch-375","replace-374","create-373","-strong-write-operations-strong--372","namespace-v1","create-371","-strong-write-operations-strong--370","localsubjectaccessreview-v1beta1","list-369","read-368","-strong-read-operations-strong--367","componentstatus-v1","watch-list-366","watch-365","list-364","read-363","-strong-read-operations-strong--362","delete-collection-361","delete-360","patch-359","replace-358","create-357","-strong-write-operations-strong--356","clusterrolebinding-v1alpha1","watch-list-355","watch-354","list-353","read-352","-strong-read-operations-strong--351","delete-collection-350","delete-349","patch-348","replace-347","create-346","-strong-write-operations-strong--345","clusterrole-v1alpha1","replace-status-344","-strong-status-operations-strong--343","watch-list-342","watch-341","list-340","read-339","-strong-read-operations-strong--338","delete-collection-337","delete-336","patch-335","replace-334","create-333","-strong-write-operations-strong--332","certificatesigningrequest-v1alpha1","create-331","-strong-write-operations-strong--330","binding-v1","-strong-cluster-strong-","watch-list-329","watch-328","list-327","read-326","-strong-read-operations-strong--325","delete-collection-324","delete-323","patch-322","replace-321","create-320","-strong-write-operations-strong--319","thirdpartyresource-v1beta1","replace-status-318","read-status-317","patch-status-316","-strong-status-operations-strong--315","watch-list-all-namespaces-314","watch-list-313","watch-312","list-all-namespaces-311","list-310","read-309","-strong-read-operations-strong--308","delete-collection-307","delete-306","patch-305","replace-304","create-303","-strong-write-operations-strong--302","poddisruptionbudget-v1beta1","watch-list-all-namespaces-301","watch-list-300","watch-299","list-all-namespaces-298","list-297","read-296","-strong-read-operations-strong--295","delete-collection-294","delete-293","patch-292","replace-291","create-290","-strong-write-operations-strong--289","podtemplate-v1","replace-status-288","read-status-287","patch-status-286","-strong-status-operations-strong--285","watch-list-all-namespaces-284","watch-list-283","watch-282","list-all-namespaces-281","list-280","read-279","-strong-read-operations-strong--278","delete-collection-277","delete-276","patch-275","replace-274","create-273","-strong-write-operations-strong--272","horizontalpodautoscaler-v1","watch-list-all-namespaces-271","watch-list-270","watch-269","list-all-namespaces-268","list-267","read-266","-strong-read-operations-strong--265","delete-collection-264","delete-263","patch-262","replace-261","create-260","-strong-write-operations-strong--259","limitrange-v1","watch-list-all-namespaces-258","watch-list-257","watch-256","list-all-namespaces-255","list-254","read-253","-strong-read-operations-strong--252","delete-collection-251","delete-250","patch-249","replace-248","create-247","-strong-write-operations-strong--246","event-v1","-strong-metadata-strong-","volume-v1","watch-list-245","watch-244","list-243","read-242","-strong-read-operations-strong--241","delete-collection-240","delete-239","patch-238","replace-237","create-236","-strong-write-operations-strong--235","storageclass-v1beta1","replace-status-234","read-status-233","patch-status-232","-strong-status-operations-strong--231","watch-list-all-namespaces-230","watch-list-229","watch-228","list-all-namespaces-227","list-226","read-225","-strong-read-operations-strong--224","delete-collection-223","delete-222","patch-221","replace-220","create-219","-strong-write-operations-strong--218","persistentvolumeclaim-v1","watch-list-all-namespaces-217","watch-list-216","watch-215","list-all-namespaces-214","list-213","read-212","-strong-read-operations-strong--211","delete-collection-210","delete-209","patch-208","replace-207","create-206","-strong-write-operations-strong--205","secret-v1","watch-list-all-namespaces-204","watch-list-203","watch-202","list-all-namespaces-201","list-200","read-199","-strong-read-operations-strong--198","delete-collection-197","delete-196","patch-195","replace-194","create-193","-strong-write-operations-strong--192","configmap-v1","-strong-config-storage-strong-","replace-proxy-path-191","replace-proxy-190","replace-connect-proxy-path-189","replace-connect-proxy-188","head-connect-proxy-path-187","head-connect-proxy-186","get-proxy-path-185","get-proxy-184","get-connect-proxy-path-183","get-connect-proxy-182","delete-proxy-path-181","delete-proxy-180","delete-connect-proxy-path-179","delete-connect-proxy-178","create-proxy-path-177","create-proxy-176","create-connect-proxy-path-175","create-connect-proxy-174","-strong-proxy-operations-strong--173","replace-status-172","read-status-171","patch-status-170","-strong-status-operations-strong--169","watch-list-all-namespaces-168","watch-list-167","watch-166","list-all-namespaces-165","list-164","read-163","-strong-read-operations-strong--162","delete-161","patch-160","replace-159","create-158","-strong-write-operations-strong--157","service-v1","replace-status-156","read-status-155","patch-status-154","-strong-status-operations-strong--153","watch-list-all-namespaces-152","watch-list-151","watch-150","list-all-namespaces-149","list-148","read-147","-strong-read-operations-strong--146","delete-collection-145","delete-144","patch-143","replace-142","create-141","-strong-write-operations-strong--140","ingress-v1beta1","watch-list-all-namespaces-139","watch-list-138","watch-137","list-all-namespaces-136","list-135","read-134","-strong-read-operations-strong--133","delete-collection-132","delete-131","patch-130","replace-129","create-128","-strong-write-operations-strong--127","endpoints-v1","-strong-discovery-load-balancing-strong-","replace-status-126","read-status-125","patch-status-124","-strong-status-operations-strong--123","watch-list-all-namespaces-122","watch-list-121","watch-120","list-all-namespaces-119","list-118","read-117","-strong-read-operations-strong--116","delete-collection-115","delete-114","patch-113","replace-112","create-111","-strong-write-operations-strong--110","statefulset-v1beta1","replace-status-109","read-status-108","patch-status-107","-strong-status-operations-strong--106","watch-list-all-namespaces-105","watch-list-104","watch-103","list-all-namespaces-102","list-101","read-100","-strong-read-operations-strong--99","delete-collection-98","delete-97","patch-96","replace-95","create-94","-strong-write-operations-strong--93","replicationcontroller-v1","patch-scale-92","replace-scale-91","read-scale-90","-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","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","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","rollback","patch-scale","replace-scale","read-scale","-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","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","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","container-v1","-strong-workloads-strong-","resource-operations","resource-objects","resource-categories","-strong-api-overview-strong-"]}})(); \ No newline at end of file From 0e8bb958a5e83f78724ffef1a0164f10a362ca93 Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 19 Jan 2017 20:30:41 -0800 Subject: [PATCH 074/132] Delete unused reference generated files --- docs/api-reference/v1.5/documents/_cluster.md | 5 - docs/api-reference/v1.5/documents/_config.md | 11 - .../v1.5/documents/_definitions.md | 3 - ..._generated_apigroup_unversioned_concept.md | 46 - ...nerated_apigroup_unversioned_definition.md | 22 - ...erated_apigrouplist_unversioned_concept.md | 32 - ...ted_apigrouplist_unversioned_definition.md | 18 - ...nerated_apiresource_unversioned_concept.md | 44 - ...ated_apiresource_unversioned_definition.md | 19 - ...ted_apiresourcelist_unversioned_concept.md | 33 - ..._apiresourcelist_unversioned_definition.md | 19 - .../_generated_apiversion_v1beta1_concept.md | 31 - ...generated_apiversion_v1beta1_definition.md | 17 - ...nerated_apiversions_unversioned_concept.md | 33 - ...ated_apiversions_unversioned_definition.md | 19 - .../_generated_attachedvolume_v1_concept.md | 32 - ..._generated_attachedvolume_v1_definition.md | 18 - ...lasticblockstorevolumesource_v1_concept.md | 36 - ...ticblockstorevolumesource_v1_definition.md | 22 - ...erated_azurediskvolumesource_v1_concept.md | 35 - ...ted_azurediskvolumesource_v1_definition.md | 21 - ...erated_azurefilevolumesource_v1_concept.md | 33 - ...ted_azurefilevolumesource_v1_definition.md | 19 - .../_generated_binding_v1_concept.md | 104 - .../_generated_binding_v1_definition.md | 19 - .../_generated_capabilities_v1_concept.md | 32 - .../_generated_capabilities_v1_definition.md | 18 - ...generated_cephfsvolumesource_v1_concept.md | 36 - ...erated_cephfsvolumesource_v1_definition.md | 22 - ...tificatesigningrequest_v1alpha1_concept.md | 590 ----- ...icatesigningrequest_v1alpha1_definition.md | 21 - ...igningrequestcondition_v1alpha1_concept.md | 34 - ...ingrequestcondition_v1alpha1_definition.md | 20 - ...catesigningrequestlist_v1alpha1_concept.md | 99 - ...esigningrequestlist_v1alpha1_definition.md | 19 - ...catesigningrequestspec_v1alpha1_concept.md | 34 - ...esigningrequestspec_v1alpha1_definition.md | 20 - ...tesigningrequeststatus_v1alpha1_concept.md | 103 - ...igningrequeststatus_v1alpha1_definition.md | 18 - ...generated_cindervolumesource_v1_concept.md | 33 - ...erated_cindervolumesource_v1_definition.md | 19 - ..._generated_clusterrole_v1alpha1_concept.md | 565 ---- ...nerated_clusterrole_v1alpha1_definition.md | 20 - ...ted_clusterrolebinding_v1alpha1_concept.md | 627 ----- ..._clusterrolebinding_v1alpha1_definition.md | 21 - ...clusterrolebindinglist_v1alpha1_concept.md | 33 - ...sterrolebindinglist_v1alpha1_definition.md | 19 - ...erated_clusterrolelist_v1alpha1_concept.md | 99 - ...ted_clusterrolelist_v1alpha1_definition.md | 19 - ...generated_componentcondition_v1_concept.md | 34 - ...erated_componentcondition_v1_definition.md | 20 - .../_generated_componentstatus_v1_concept.md | 172 -- ...generated_componentstatus_v1_definition.md | 20 - ...enerated_componentstatuslist_v1_concept.md | 33 - ...rated_componentstatuslist_v1_definition.md | 19 - .../_generated_configmap_v1_concept.md | 709 ----- .../_generated_configmap_v1_definition.md | 20 - ...nerated_configmapkeyselector_v1_concept.md | 32 - ...ated_configmapkeyselector_v1_definition.md | 18 - .../_generated_configmaplist_v1_concept.md | 104 - .../_generated_configmaplist_v1_definition.md | 19 - ...erated_configmapvolumesource_v1_concept.md | 35 - ...ted_configmapvolumesource_v1_definition.md | 21 - .../_generated_container_v1_concept.md | 84 - .../_generated_container_v1_definition.md | 34 - .../_generated_containerimage_v1_concept.md | 32 - ..._generated_containerimage_v1_definition.md | 18 - .../_generated_containerport_v1_concept.md | 35 - .../_generated_containerport_v1_definition.md | 21 - .../_generated_containerstate_v1_concept.md | 33 - ..._generated_containerstate_v1_definition.md | 19 - ...erated_containerstaterunning_v1_concept.md | 31 - ...ted_containerstaterunning_v1_definition.md | 17 - ...ted_containerstateterminated_v1_concept.md | 37 - ..._containerstateterminated_v1_definition.md | 23 - ...erated_containerstatewaiting_v1_concept.md | 32 - ...ted_containerstatewaiting_v1_definition.md | 18 - .../_generated_containerstatus_v1_concept.md | 38 - ...generated_containerstatus_v1_definition.md | 24 - ...ed_cputargetutilization_v1beta1_concept.md | 31 - ...cputargetutilization_v1beta1_definition.md | 17 - .../_generated_cronjob_v2alpha1_concept.md | 1000 ------- .../_generated_cronjob_v2alpha1_definition.md | 21 - ..._generated_cronjoblist_v2alpha1_concept.md | 33 - ...nerated_cronjoblist_v2alpha1_definition.md | 19 - ..._generated_cronjobspec_v2alpha1_concept.md | 35 - ...nerated_cronjobspec_v2alpha1_definition.md | 21 - ...enerated_cronjobstatus_v2alpha1_concept.md | 32 - ...rated_cronjobstatus_v2alpha1_definition.md | 18 - ..._crossversionobjectreference_v1_concept.md | 33 - ...ossversionobjectreference_v1_definition.md | 19 - .../_generated_daemonendpoint_v1_concept.md | 31 - ..._generated_daemonendpoint_v1_definition.md | 17 - .../_generated_daemonset_v1beta1_concept.md | 1110 -------- ..._generated_daemonset_v1beta1_definition.md | 21 - ...generated_daemonsetlist_v1beta1_concept.md | 104 - ...erated_daemonsetlist_v1beta1_definition.md | 19 - ...generated_daemonsetspec_v1beta1_concept.md | 32 - ...erated_daemonsetspec_v1beta1_definition.md | 18 - ...nerated_daemonsetstatus_v1beta1_concept.md | 34 - ...ated_daemonsetstatus_v1beta1_definition.md | 20 - .../_generated_deleteoptions_v1_concept.md | 35 - .../_generated_deleteoptions_v1_definition.md | 21 - .../_generated_deployment_v1beta1_concept.md | 2218 ---------------- ...generated_deployment_v1beta1_definition.md | 21 - ...ted_deploymentcondition_v1beta1_concept.md | 36 - ..._deploymentcondition_v1beta1_definition.md | 22 - ...enerated_deploymentlist_v1beta1_concept.md | 33 - ...rated_deploymentlist_v1beta1_definition.md | 19 - ...ated_deploymentrollback_v1beta1_concept.md | 34 - ...d_deploymentrollback_v1beta1_definition.md | 20 - ...enerated_deploymentspec_v1beta1_concept.md | 39 - ...rated_deploymentspec_v1beta1_definition.md | 25 - ...erated_deploymentstatus_v1beta1_concept.md | 36 - ...ted_deploymentstatus_v1beta1_definition.md | 22 - ...ated_deploymentstrategy_v1beta1_concept.md | 32 - ...d_deploymentstrategy_v1beta1_definition.md | 18 - ...erated_downwardapivolumefile_v1_concept.md | 34 - ...ted_downwardapivolumefile_v1_definition.md | 20 - ...ated_downwardapivolumesource_v1_concept.md | 32 - ...d_downwardapivolumesource_v1_definition.md | 18 - ...nerated_emptydirvolumesource_v1_concept.md | 31 - ...ated_emptydirvolumesource_v1_definition.md | 17 - .../_generated_endpointaddress_v1_concept.md | 34 - ...generated_endpointaddress_v1_definition.md | 20 - .../_generated_endpointport_v1_concept.md | 33 - .../_generated_endpointport_v1_definition.md | 19 - .../_generated_endpoints_v1_concept.md | 786 ------ .../_generated_endpoints_v1_definition.md | 31 - .../_generated_endpointslist_v1_concept.md | 33 - .../_generated_endpointslist_v1_definition.md | 19 - .../_generated_endpointsubset_v1_concept.md | 40 - ..._generated_endpointsubset_v1_definition.md | 26 - .../documents/_generated_envvar_v1_concept.md | 33 - .../_generated_envvar_v1_definition.md | 19 - .../_generated_envvarsource_v1_concept.md | 34 - .../_generated_envvarsource_v1_definition.md | 20 - .../documents/_generated_event_v1_concept.md | 716 ----- .../_generated_event_v1_definition.md | 27 - .../_generated_event_versioned_concept.md | 31 - .../_generated_event_versioned_definition.md | 17 - .../_generated_eventlist_v1_concept.md | 104 - .../_generated_eventlist_v1_definition.md | 19 - .../_generated_eventsource_v1_concept.md | 32 - .../_generated_eventsource_v1_definition.md | 18 - .../_generated_eviction_v1beta1_concept.md | 33 - .../_generated_eviction_v1beta1_definition.md | 19 - .../_generated_execaction_v1_concept.md | 31 - .../_generated_execaction_v1_definition.md | 17 - .../_generated_fcvolumesource_v1_concept.md | 34 - ..._generated_fcvolumesource_v1_definition.md | 20 - .../_generated_flexvolumesource_v1_concept.md | 35 - ...enerated_flexvolumesource_v1_definition.md | 21 - ...enerated_flockervolumesource_v1_concept.md | 32 - ...rated_flockervolumesource_v1_definition.md | 18 - ...cepersistentdiskvolumesource_v1_concept.md | 36 - ...ersistentdiskvolumesource_v1_definition.md | 22 - ...enerated_gitrepovolumesource_v1_concept.md | 33 - ...rated_gitrepovolumesource_v1_definition.md | 19 - ...erated_glusterfsvolumesource_v1_concept.md | 33 - ...ted_glusterfsvolumesource_v1_definition.md | 19 - ...versionfordiscovery_unversioned_concept.md | 32 - ...sionfordiscovery_unversioned_definition.md | 18 - .../_generated_handler_v1_concept.md | 33 - .../_generated_handler_v1_definition.md | 19 - ...ated_horizontalpodautoscaler_v1_concept.md | 735 ------ ...d_horizontalpodautoscaler_v1_definition.md | 21 - ...horizontalpodautoscaler_v1beta1_concept.md | 735 ------ ...izontalpodautoscaler_v1beta1_definition.md | 21 - ..._horizontalpodautoscalerlist_v1_concept.md | 104 - ...rizontalpodautoscalerlist_v1_definition.md | 19 - ...zontalpodautoscalerlist_v1beta1_concept.md | 104 - ...talpodautoscalerlist_v1beta1_definition.md | 19 - ..._horizontalpodautoscalerspec_v1_concept.md | 34 - ...rizontalpodautoscalerspec_v1_definition.md | 20 - ...zontalpodautoscalerspec_v1beta1_concept.md | 34 - ...talpodautoscalerspec_v1beta1_definition.md | 20 - ...orizontalpodautoscalerstatus_v1_concept.md | 241 -- ...zontalpodautoscalerstatus_v1_definition.md | 21 - ...ntalpodautoscalerstatus_v1beta1_concept.md | 241 -- ...lpodautoscalerstatus_v1beta1_definition.md | 21 - ...nerated_hostpathvolumesource_v1_concept.md | 31 - ...ated_hostpathvolumesource_v1_definition.md | 17 - .../_generated_httpgetaction_v1_concept.md | 35 - .../_generated_httpgetaction_v1_definition.md | 21 - .../_generated_httpheader_v1_concept.md | 32 - .../_generated_httpheader_v1_definition.md | 18 - ...nerated_httpingresspath_v1beta1_concept.md | 32 - ...ated_httpingresspath_v1beta1_definition.md | 18 - ...ed_httpingressrulevalue_v1beta1_concept.md | 31 - ...httpingressrulevalue_v1beta1_definition.md | 17 - .../_generated_info_version_concept.md | 38 - .../_generated_info_version_definition.md | 24 - .../_generated_ingress_v1beta1_concept.md | 730 ----- .../_generated_ingress_v1beta1_definition.md | 21 - ...enerated_ingressbackend_v1beta1_concept.md | 32 - ...rated_ingressbackend_v1beta1_definition.md | 18 - .../_generated_ingresslist_v1beta1_concept.md | 104 - ...enerated_ingresslist_v1beta1_definition.md | 19 - .../_generated_ingressrule_v1beta1_concept.md | 32 - ...enerated_ingressrule_v1beta1_definition.md | 18 - .../_generated_ingressspec_v1beta1_concept.md | 33 - ...enerated_ingressspec_v1beta1_definition.md | 19 - ...generated_ingressstatus_v1beta1_concept.md | 237 -- ...erated_ingressstatus_v1beta1_definition.md | 17 - .../_generated_ingresstls_v1beta1_concept.md | 32 - ...generated_ingresstls_v1beta1_definition.md | 18 - .../_generated_intorstring_intstr_concept.md | 30 - ...generated_intorstring_intstr_definition.md | 16 - ..._generated_iscsivolumesource_v1_concept.md | 36 - ...nerated_iscsivolumesource_v1_definition.md | 22 - .../documents/_generated_job_v1_concept.md | 1304 --------- .../documents/_generated_job_v1_definition.md | 21 - .../_generated_job_v1beta1_concept.md | 1190 --------- .../_generated_job_v1beta1_definition.md | 21 - .../_generated_job_v2alpha1_concept.md | 1190 --------- .../_generated_job_v2alpha1_definition.md | 21 - .../_generated_jobcondition_v1_concept.md | 36 - .../_generated_jobcondition_v1_definition.md | 22 - ..._generated_jobcondition_v1beta1_concept.md | 36 - ...nerated_jobcondition_v1beta1_definition.md | 22 - ...generated_jobcondition_v2alpha1_concept.md | 36 - ...erated_jobcondition_v2alpha1_definition.md | 22 - .../_generated_joblist_v1_concept.md | 33 - .../_generated_joblist_v1_definition.md | 19 - .../_generated_joblist_v1beta1_concept.md | 104 - .../_generated_joblist_v1beta1_definition.md | 19 - .../_generated_joblist_v2alpha1_concept.md | 104 - .../_generated_joblist_v2alpha1_definition.md | 19 - .../_generated_jobspec_v1_concept.md | 36 - .../_generated_jobspec_v1_definition.md | 22 - .../_generated_jobspec_v1beta1_concept.md | 36 - .../_generated_jobspec_v1beta1_definition.md | 22 - .../_generated_jobspec_v2alpha1_concept.md | 36 - .../_generated_jobspec_v2alpha1_definition.md | 22 - .../_generated_jobstatus_v1_concept.md | 242 -- .../_generated_jobstatus_v1_definition.md | 22 - .../_generated_jobstatus_v1beta1_concept.md | 242 -- ..._generated_jobstatus_v1beta1_definition.md | 22 - .../_generated_jobstatus_v2alpha1_concept.md | 242 -- ...generated_jobstatus_v2alpha1_definition.md | 22 - ...erated_jobtemplatespec_v2alpha1_concept.md | 32 - ...ted_jobtemplatespec_v2alpha1_definition.md | 18 - .../_generated_keytopath_v1_concept.md | 33 - .../_generated_keytopath_v1_definition.md | 19 - ...rated_labelselector_unversioned_concept.md | 32 - ...ed_labelselector_unversioned_definition.md | 18 - ...selectorrequirement_unversioned_concept.md | 33 - ...ectorrequirement_unversioned_definition.md | 19 - .../_generated_lifecycle_v1_concept.md | 32 - .../_generated_lifecycle_v1_definition.md | 18 - .../_generated_limitrange_v1_concept.md | 718 ----- .../_generated_limitrange_v1_definition.md | 20 - .../_generated_limitrangeitem_v1_concept.md | 36 - ..._generated_limitrangeitem_v1_definition.md | 22 - .../_generated_limitrangelist_v1_concept.md | 104 - ..._generated_limitrangelist_v1_definition.md | 19 - .../_generated_limitrangespec_v1_concept.md | 31 - ..._generated_limitrangespec_v1_definition.md | 17 - ..._generated_listmeta_unversioned_concept.md | 32 - ...nerated_listmeta_unversioned_definition.md | 18 - ...enerated_loadbalanceringress_v1_concept.md | 32 - ...rated_loadbalanceringress_v1_definition.md | 18 - ...generated_loadbalancerstatus_v1_concept.md | 31 - ...erated_loadbalancerstatus_v1_definition.md | 17 - ...nerated_localobjectreference_v1_concept.md | 31 - ...ated_localobjectreference_v1_definition.md | 17 - ...ocalsubjectaccessreview_v1beta1_concept.md | 105 - ...lsubjectaccessreview_v1beta1_definition.md | 20 - .../_generated_namespace_v1_concept.md | 586 ---- .../_generated_namespace_v1_definition.md | 21 - .../_generated_namespacelist_v1_concept.md | 99 - .../_generated_namespacelist_v1_definition.md | 19 - .../_generated_namespacespec_v1_concept.md | 31 - .../_generated_namespacespec_v1_definition.md | 17 - .../_generated_namespacestatus_v1_concept.md | 234 -- ...generated_namespacestatus_v1_definition.md | 17 - ...generated_networkpolicy_v1beta1_concept.md | 719 ----- ...erated_networkpolicy_v1beta1_definition.md | 20 - ...etworkpolicyingressrule_v1beta1_concept.md | 32 - ...orkpolicyingressrule_v1beta1_definition.md | 18 - ...rated_networkpolicylist_v1beta1_concept.md | 104 - ...ed_networkpolicylist_v1beta1_definition.md | 19 - ...rated_networkpolicypeer_v1beta1_concept.md | 32 - ...ed_networkpolicypeer_v1beta1_definition.md | 18 - ...rated_networkpolicyport_v1beta1_concept.md | 32 - ...ed_networkpolicyport_v1beta1_definition.md | 18 - ...rated_networkpolicyspec_v1beta1_concept.md | 32 - ...ed_networkpolicyspec_v1beta1_definition.md | 18 - .../_generated_nfsvolumesource_v1_concept.md | 33 - ...generated_nfsvolumesource_v1_definition.md | 19 - .../documents/_generated_node_v1_concept.md | 1670 ------------ .../_generated_node_v1_definition.md | 21 - .../_generated_nodeaddress_v1_concept.md | 32 - .../_generated_nodeaddress_v1_definition.md | 18 - .../_generated_nodecondition_v1_concept.md | 36 - .../_generated_nodecondition_v1_definition.md | 22 - ...enerated_nodedaemonendpoints_v1_concept.md | 31 - ...rated_nodedaemonendpoints_v1_definition.md | 17 - .../_generated_nodelist_v1_concept.md | 99 - .../_generated_nodelist_v1_definition.md | 19 - .../_generated_nodespec_v1_concept.md | 34 - .../_generated_nodespec_v1_definition.md | 20 - .../_generated_nodestatus_v1_concept.md | 243 -- .../_generated_nodestatus_v1_definition.md | 26 - .../_generated_nodesysteminfo_v1_concept.md | 40 - ..._generated_nodesysteminfo_v1_definition.md | 26 - ...d_nonresourceattributes_v1beta1_concept.md | 32 - ...onresourceattributes_v1beta1_definition.md | 18 - ...enerated_objectfieldselector_v1_concept.md | 32 - ...rated_objectfieldselector_v1_definition.md | 18 - .../_generated_objectmeta_v1_concept.md | 45 - .../_generated_objectmeta_v1_definition.md | 31 - .../_generated_objectreference_v1_concept.md | 37 - ...generated_objectreference_v1_definition.md | 23 - .../_generated_ownerreference_v1_concept.md | 35 - ..._generated_ownerreference_v1_definition.md | 21 - .../_generated_patch_unversioned_concept.md | 29 - ..._generated_patch_unversioned_definition.md | 15 - .../_generated_persistentvolume_v1_concept.md | 867 ------ ...enerated_persistentvolume_v1_definition.md | 21 - ...erated_persistentvolumeclaim_v1_concept.md | 934 ------- ...ted_persistentvolumeclaim_v1_definition.md | 21 - ...ed_persistentvolumeclaimlist_v1_concept.md | 104 - ...persistentvolumeclaimlist_v1_definition.md | 19 - ...ed_persistentvolumeclaimspec_v1_concept.md | 34 - ...persistentvolumeclaimspec_v1_definition.md | 20 - ..._persistentvolumeclaimstatus_v1_concept.md | 33 - ...rsistentvolumeclaimstatus_v1_definition.md | 19 - ...stentvolumeclaimvolumesource_v1_concept.md | 32 - ...ntvolumeclaimvolumesource_v1_definition.md | 18 - ...nerated_persistentvolumelist_v1_concept.md | 33 - ...ated_persistentvolumelist_v1_definition.md | 19 - ...nerated_persistentvolumespec_v1_concept.md | 51 - ...ated_persistentvolumespec_v1_definition.md | 37 - ...rated_persistentvolumestatus_v1_concept.md | 33 - ...ed_persistentvolumestatus_v1_definition.md | 19 - ...onpersistentdiskvolumesource_v1_concept.md | 32 - ...ersistentdiskvolumesource_v1_definition.md | 18 - .../documents/_generated_pod_v1_concept.md | 2128 --------------- .../documents/_generated_pod_v1_definition.md | 21 - .../_generated_podcondition_v1_concept.md | 36 - .../_generated_podcondition_v1_definition.md | 22 - ...ted_poddisruptionbudget_v1beta1_concept.md | 734 ------ ..._poddisruptionbudget_v1beta1_definition.md | 21 - ...poddisruptionbudgetlist_v1beta1_concept.md | 104 - ...disruptionbudgetlist_v1beta1_definition.md | 19 - ...poddisruptionbudgetspec_v1beta1_concept.md | 32 - ...disruptionbudgetspec_v1beta1_definition.md | 18 - ...ddisruptionbudgetstatus_v1beta1_concept.md | 242 -- ...sruptionbudgetstatus_v1beta1_definition.md | 22 - .../_generated_podlist_v1_concept.md | 33 - .../_generated_podlist_v1_definition.md | 19 - ...generated_podsecuritycontext_v1_concept.md | 35 - ...erated_podsecuritycontext_v1_definition.md | 21 - .../_generated_podspec_v1_concept.md | 47 - .../_generated_podspec_v1_definition.md | 33 - .../_generated_podstatus_v1_concept.md | 244 -- .../_generated_podstatus_v1_definition.md | 24 - .../_generated_podtemplate_v1_concept.md | 719 ----- .../_generated_podtemplate_v1_definition.md | 20 - .../_generated_podtemplatelist_v1_concept.md | 104 - ...generated_podtemplatelist_v1_definition.md | 19 - .../_generated_podtemplatespec_v1_concept.md | 32 - ...generated_podtemplatespec_v1_definition.md | 18 - .../_generated_policyrule_v1alpha1_concept.md | 36 - ...enerated_policyrule_v1alpha1_definition.md | 22 - .../_generated_preconditions_v1_concept.md | 31 - .../_generated_preconditions_v1_definition.md | 17 - .../documents/_generated_probe_v1_concept.md | 38 - .../_generated_probe_v1_definition.md | 24 - .../_generated_quantity_resource_concept.md | 30 - ..._generated_quantity_resource_definition.md | 16 - ...enerated_quobytevolumesource_v1_concept.md | 35 - ...rated_quobytevolumesource_v1_definition.md | 21 - ..._generated_rawextension_runtime_concept.md | 58 - ...nerated_rawextension_runtime_definition.md | 44 - .../_generated_rbdvolumesource_v1_concept.md | 38 - ...generated_rbdvolumesource_v1_definition.md | 24 - .../_generated_replicaset_v1beta1_concept.md | 1051 -------- ...generated_replicaset_v1beta1_definition.md | 21 - ...ted_replicasetcondition_v1beta1_concept.md | 35 - ..._replicasetcondition_v1beta1_definition.md | 21 - ...enerated_replicasetlist_v1beta1_concept.md | 33 - ...rated_replicasetlist_v1beta1_definition.md | 19 - ...enerated_replicasetspec_v1beta1_concept.md | 34 - ...rated_replicasetspec_v1beta1_definition.md | 20 - ...erated_replicasetstatus_v1beta1_concept.md | 242 -- ...ted_replicasetstatus_v1beta1_definition.md | 22 - ...erated_replicationcontroller_v1_concept.md | 784 ------ ...ted_replicationcontroller_v1_definition.md | 21 - ...plicationcontrollercondition_v1_concept.md | 35 - ...cationcontrollercondition_v1_definition.md | 21 - ...ed_replicationcontrollerlist_v1_concept.md | 104 - ...replicationcontrollerlist_v1_definition.md | 19 - ...ed_replicationcontrollerspec_v1_concept.md | 34 - ...replicationcontrollerspec_v1_definition.md | 20 - ..._replicationcontrollerstatus_v1_concept.md | 242 -- ...plicationcontrollerstatus_v1_definition.md | 22 - ...ated_resourceattributes_v1beta1_concept.md | 37 - ...d_resourceattributes_v1beta1_definition.md | 23 - ...erated_resourcefieldselector_v1_concept.md | 33 - ...ted_resourcefieldselector_v1_definition.md | 19 - .../_generated_resourcequota_v1_concept.md | 931 ------- .../_generated_resourcequota_v1_definition.md | 21 - ..._generated_resourcequotalist_v1_concept.md | 104 - ...nerated_resourcequotalist_v1_definition.md | 19 - ..._generated_resourcequotaspec_v1_concept.md | 32 - ...nerated_resourcequotaspec_v1_definition.md | 18 - ...enerated_resourcequotastatus_v1_concept.md | 32 - ...rated_resourcequotastatus_v1_definition.md | 18 - ...nerated_resourcerequirements_v1_concept.md | 32 - ...ated_resourcerequirements_v1_definition.md | 18 - .../_generated_role_v1alpha1_concept.md | 773 ------ .../_generated_role_v1alpha1_definition.md | 20 - ..._generated_rolebinding_v1alpha1_concept.md | 774 ------ ...nerated_rolebinding_v1alpha1_definition.md | 21 - ...erated_rolebindinglist_v1alpha1_concept.md | 33 - ...ted_rolebindinglist_v1alpha1_definition.md | 19 - .../_generated_rolelist_v1alpha1_concept.md | 33 - ..._generated_rolelist_v1alpha1_definition.md | 19 - .../_generated_roleref_v1alpha1_concept.md | 33 - .../_generated_roleref_v1alpha1_definition.md | 19 - ...enerated_rollbackconfig_v1beta1_concept.md | 31 - ...rated_rollbackconfig_v1beta1_definition.md | 17 - ...rollingupdatedeployment_v1beta1_concept.md | 32 - ...lingupdatedeployment_v1beta1_definition.md | 18 - .../documents/_generated_scale_v1_concept.md | 254 -- .../_generated_scale_v1_definition.md | 20 - .../_generated_scale_v1beta1_concept.md | 54 - .../_generated_scale_v1beta1_definition.md | 20 - .../_generated_scalespec_v1_concept.md | 31 - .../_generated_scalespec_v1_definition.md | 17 - .../_generated_scalespec_v1beta1_concept.md | 31 - ..._generated_scalespec_v1beta1_definition.md | 17 - .../_generated_scalestatus_v1_concept.md | 32 - .../_generated_scalestatus_v1_definition.md | 18 - .../_generated_scalestatus_v1beta1_concept.md | 33 - ...enerated_scalestatus_v1beta1_definition.md | 19 - .../documents/_generated_secret_v1_concept.md | 777 ------ .../_generated_secret_v1_definition.md | 22 - ..._generated_secretkeyselector_v1_concept.md | 32 - ...nerated_secretkeyselector_v1_definition.md | 18 - .../_generated_secretlist_v1_concept.md | 33 - .../_generated_secretlist_v1_definition.md | 19 - ...generated_secretvolumesource_v1_concept.md | 35 - ...erated_secretvolumesource_v1_definition.md | 21 - .../_generated_securitycontext_v1_concept.md | 36 - ...generated_securitycontext_v1_definition.md | 22 - ...selfsubjectaccessreview_v1beta1_concept.md | 110 - ...fsubjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 32 - ...jectaccessreviewspec_v1beta1_definition.md | 18 - .../_generated_selinuxoptions_v1_concept.md | 34 - ..._generated_selinuxoptions_v1_definition.md | 20 - ...addressbyclientcidr_unversioned_concept.md | 32 - ...ressbyclientcidr_unversioned_definition.md | 18 - .../_generated_service_v1_concept.md | 2346 ----------------- .../_generated_service_v1_definition.md | 21 - .../_generated_serviceaccount_v1_concept.md | 776 ------ ..._generated_serviceaccount_v1_definition.md | 21 - ...generated_serviceaccountlist_v1_concept.md | 33 - ...erated_serviceaccountlist_v1_definition.md | 19 - .../_generated_servicelist_v1_concept.md | 104 - .../_generated_servicelist_v1_definition.md | 19 - .../_generated_serviceport_v1_concept.md | 35 - .../_generated_serviceport_v1_definition.md | 21 - .../_generated_servicespec_v1_concept.md | 40 - .../_generated_servicespec_v1_definition.md | 26 - .../_generated_servicestatus_v1_concept.md | 31 - .../_generated_servicestatus_v1_definition.md | 17 - .../_generated_statefulset_v1beta1_concept.md | 1003 ------- ...enerated_statefulset_v1beta1_definition.md | 24 - ...nerated_statefulsetlist_v1beta1_concept.md | 33 - ...ated_statefulsetlist_v1beta1_definition.md | 19 - ...nerated_statefulsetspec_v1beta1_concept.md | 35 - ...ated_statefulsetspec_v1beta1_definition.md | 21 - ...rated_statefulsetstatus_v1beta1_concept.md | 32 - ...ed_statefulsetstatus_v1beta1_definition.md | 18 - .../_generated_status_unversioned_concept.md | 37 - ...generated_status_unversioned_definition.md | 23 - ...nerated_statuscause_unversioned_concept.md | 33 - ...ated_statuscause_unversioned_definition.md | 19 - ...rated_statusdetails_unversioned_concept.md | 35 - ...ed_statusdetails_unversioned_definition.md | 21 - ..._generated_storageclass_v1beta1_concept.md | 570 ---- ...nerated_storageclass_v1beta1_definition.md | 23 - ...erated_storageclasslist_v1beta1_concept.md | 99 - ...ted_storageclasslist_v1beta1_definition.md | 19 - .../_generated_subject_v1alpha1_concept.md | 34 - .../_generated_subject_v1alpha1_definition.md | 20 - ...ted_subjectaccessreview_v1beta1_concept.md | 124 - ..._subjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 35 - ...jectaccessreviewspec_v1beta1_definition.md | 21 - ...bjectaccessreviewstatus_v1beta1_concept.md | 33 - ...ctaccessreviewstatus_v1beta1_definition.md | 19 - ...ed_subresourcereference_v1beta1_concept.md | 34 - ...subresourcereference_v1beta1_definition.md | 20 - .../_generated_tcpsocketaction_v1_concept.md | 31 - ...generated_tcpsocketaction_v1_definition.md | 17 - ...ated_thirdpartyresource_v1beta1_concept.md | 568 ---- ...d_thirdpartyresource_v1beta1_definition.md | 21 - ..._thirdpartyresourcelist_v1beta1_concept.md | 99 - ...irdpartyresourcelist_v1beta1_definition.md | 19 - .../_generated_time_unversioned_concept.md | 30 - .../_generated_time_unversioned_definition.md | 16 - .../_generated_tokenreview_v1beta1_concept.md | 120 - ...enerated_tokenreview_v1beta1_definition.md | 20 - ...nerated_tokenreviewspec_v1beta1_concept.md | 31 - ...ated_tokenreviewspec_v1beta1_definition.md | 17 - ...rated_tokenreviewstatus_v1beta1_concept.md | 33 - ...ed_tokenreviewstatus_v1beta1_definition.md | 19 - .../_generated_userinfo_v1beta1_concept.md | 34 - .../_generated_userinfo_v1beta1_definition.md | 20 - .../documents/_generated_volume_v1_concept.md | 54 - .../_generated_volume_v1_definition.md | 40 - .../_generated_volumemount_v1_concept.md | 34 - .../_generated_volumemount_v1_definition.md | 20 - ...pherevirtualdiskvolumesource_v1_concept.md | 32 - ...revirtualdiskvolumesource_v1_definition.md | 18 - docs/api-reference/v1.5/documents/_meta.md | 12 - .../v1.5/documents/_oldversions.md | 3 - .../api-reference/v1.5/documents/_overview.md | 92 - .../v1.5/documents/_servicediscovery.md | 13 - .../v1.5/documents/_workloads.md | 14 - .../v1.5/documents/deployment-original.md | 518 ---- .../v1.5/documents/deployment.md | 397 --- docs/api-reference/v1.5/manifest.json | 520 ---- docs/api-reference/v1.5/runbrodocs.sh | 6 - .../v1.5/documents/_cluster.md | 5 - .../v1.5/documents/_config.md | 11 - .../v1.5/documents/_definitions.md | 3 - ..._generated_apigroup_unversioned_concept.md | 46 - ...nerated_apigroup_unversioned_definition.md | 22 - ...erated_apigrouplist_unversioned_concept.md | 32 - ...ted_apigrouplist_unversioned_definition.md | 18 - ...nerated_apiresource_unversioned_concept.md | 44 - ...ated_apiresource_unversioned_definition.md | 19 - ...ted_apiresourcelist_unversioned_concept.md | 33 - ..._apiresourcelist_unversioned_definition.md | 19 - .../_generated_apiversion_v1beta1_concept.md | 31 - ...generated_apiversion_v1beta1_definition.md | 17 - ...nerated_apiversions_unversioned_concept.md | 33 - ...ated_apiversions_unversioned_definition.md | 19 - .../_generated_attachedvolume_v1_concept.md | 32 - ..._generated_attachedvolume_v1_definition.md | 18 - ...lasticblockstorevolumesource_v1_concept.md | 36 - ...ticblockstorevolumesource_v1_definition.md | 22 - ...erated_azurediskvolumesource_v1_concept.md | 35 - ...ted_azurediskvolumesource_v1_definition.md | 21 - ...erated_azurefilevolumesource_v1_concept.md | 33 - ...ted_azurefilevolumesource_v1_definition.md | 19 - .../_generated_binding_v1_concept.md | 33 - .../_generated_binding_v1_definition.md | 19 - .../_generated_capabilities_v1_concept.md | 32 - .../_generated_capabilities_v1_definition.md | 18 - ...generated_cephfsvolumesource_v1_concept.md | 36 - ...erated_cephfsvolumesource_v1_definition.md | 22 - ...tificatesigningrequest_v1alpha1_concept.md | 68 - ...icatesigningrequest_v1alpha1_definition.md | 21 - ...igningrequestcondition_v1alpha1_concept.md | 34 - ...ingrequestcondition_v1alpha1_definition.md | 20 - ...catesigningrequestlist_v1alpha1_concept.md | 33 - ...esigningrequestlist_v1alpha1_definition.md | 19 - ...catesigningrequestspec_v1alpha1_concept.md | 34 - ...esigningrequestspec_v1alpha1_definition.md | 20 - ...tesigningrequeststatus_v1alpha1_concept.md | 32 - ...igningrequeststatus_v1alpha1_definition.md | 18 - ...generated_cindervolumesource_v1_concept.md | 33 - ...erated_cindervolumesource_v1_definition.md | 19 - ..._generated_clusterrole_v1alpha1_concept.md | 45 - ...nerated_clusterrole_v1alpha1_definition.md | 20 - ...ted_clusterrolebinding_v1alpha1_concept.md | 46 - ..._clusterrolebinding_v1alpha1_definition.md | 21 - ...clusterrolebindinglist_v1alpha1_concept.md | 33 - ...sterrolebindinglist_v1alpha1_definition.md | 19 - ...erated_clusterrolelist_v1alpha1_concept.md | 33 - ...ted_clusterrolelist_v1alpha1_definition.md | 19 - ...generated_componentcondition_v1_concept.md | 34 - ...erated_componentcondition_v1_definition.md | 20 - .../_generated_componentstatus_v1_concept.md | 45 - ...generated_componentstatus_v1_definition.md | 20 - ...enerated_componentstatuslist_v1_concept.md | 33 - ...rated_componentstatuslist_v1_definition.md | 19 - .../_generated_configmap_v1_concept.md | 45 - .../_generated_configmap_v1_definition.md | 20 - ...nerated_configmapkeyselector_v1_concept.md | 32 - ...ated_configmapkeyselector_v1_definition.md | 18 - .../_generated_configmaplist_v1_concept.md | 33 - .../_generated_configmaplist_v1_definition.md | 19 - ...erated_configmapvolumesource_v1_concept.md | 35 - ...ted_configmapvolumesource_v1_definition.md | 21 - .../_generated_container_v1_concept.md | 74 - .../_generated_container_v1_definition.md | 34 - .../_generated_containerimage_v1_concept.md | 32 - ..._generated_containerimage_v1_definition.md | 18 - .../_generated_containerport_v1_concept.md | 35 - .../_generated_containerport_v1_definition.md | 21 - .../_generated_containerstate_v1_concept.md | 33 - ..._generated_containerstate_v1_definition.md | 19 - ...erated_containerstaterunning_v1_concept.md | 31 - ...ted_containerstaterunning_v1_definition.md | 17 - ...ted_containerstateterminated_v1_concept.md | 37 - ..._containerstateterminated_v1_definition.md | 23 - ...erated_containerstatewaiting_v1_concept.md | 32 - ...ted_containerstatewaiting_v1_definition.md | 18 - .../_generated_containerstatus_v1_concept.md | 38 - ...generated_containerstatus_v1_definition.md | 24 - ...ed_cputargetutilization_v1beta1_concept.md | 31 - ...cputargetutilization_v1beta1_definition.md | 17 - .../_generated_cronjob_v2alpha1_concept.md | 69 - .../_generated_cronjob_v2alpha1_definition.md | 21 - ..._generated_cronjoblist_v2alpha1_concept.md | 33 - ...nerated_cronjoblist_v2alpha1_definition.md | 19 - ..._generated_cronjobspec_v2alpha1_concept.md | 35 - ...nerated_cronjobspec_v2alpha1_definition.md | 21 - ...enerated_cronjobstatus_v2alpha1_concept.md | 32 - ...rated_cronjobstatus_v2alpha1_definition.md | 18 - ..._crossversionobjectreference_v1_concept.md | 33 - ...ossversionobjectreference_v1_definition.md | 19 - .../_generated_daemonendpoint_v1_concept.md | 31 - ..._generated_daemonendpoint_v1_definition.md | 17 - .../_generated_daemonset_v1beta1_concept.md | 99 - ..._generated_daemonset_v1beta1_definition.md | 21 - ...generated_daemonsetlist_v1beta1_concept.md | 33 - ...erated_daemonsetlist_v1beta1_definition.md | 19 - ...generated_daemonsetspec_v1beta1_concept.md | 32 - ...erated_daemonsetspec_v1beta1_definition.md | 18 - ...nerated_daemonsetstatus_v1beta1_concept.md | 34 - ...ated_daemonsetstatus_v1beta1_definition.md | 20 - .../_generated_deleteoptions_v1_concept.md | 35 - .../_generated_deleteoptions_v1_definition.md | 21 - .../_generated_deployment_v1beta1_concept.md | 137 - ...generated_deployment_v1beta1_definition.md | 21 - ...ted_deploymentcondition_v1beta1_concept.md | 36 - ..._deploymentcondition_v1beta1_definition.md | 22 - ...enerated_deploymentlist_v1beta1_concept.md | 33 - ...rated_deploymentlist_v1beta1_definition.md | 19 - ...ated_deploymentrollback_v1beta1_concept.md | 34 - ...d_deploymentrollback_v1beta1_definition.md | 20 - ...enerated_deploymentspec_v1beta1_concept.md | 39 - ...rated_deploymentspec_v1beta1_definition.md | 25 - ...erated_deploymentstatus_v1beta1_concept.md | 36 - ...ted_deploymentstatus_v1beta1_definition.md | 22 - ...ated_deploymentstrategy_v1beta1_concept.md | 32 - ...d_deploymentstrategy_v1beta1_definition.md | 18 - ...erated_downwardapivolumefile_v1_concept.md | 34 - ...ted_downwardapivolumefile_v1_definition.md | 20 - ...ated_downwardapivolumesource_v1_concept.md | 32 - ...d_downwardapivolumesource_v1_definition.md | 18 - ...nerated_emptydirvolumesource_v1_concept.md | 31 - ...ated_emptydirvolumesource_v1_definition.md | 17 - .../_generated_endpointaddress_v1_concept.md | 34 - ...generated_endpointaddress_v1_definition.md | 20 - .../_generated_endpointport_v1_concept.md | 33 - .../_generated_endpointport_v1_definition.md | 19 - .../_generated_endpoints_v1_concept.md | 56 - .../_generated_endpoints_v1_definition.md | 31 - .../_generated_endpointslist_v1_concept.md | 33 - .../_generated_endpointslist_v1_definition.md | 19 - .../_generated_endpointsubset_v1_concept.md | 40 - ..._generated_endpointsubset_v1_definition.md | 26 - .../documents/_generated_envvar_v1_concept.md | 33 - .../_generated_envvar_v1_definition.md | 19 - .../_generated_envvarsource_v1_concept.md | 34 - .../_generated_envvarsource_v1_definition.md | 20 - .../documents/_generated_event_v1_concept.md | 52 - .../_generated_event_v1_definition.md | 27 - .../_generated_event_versioned_concept.md | 31 - .../_generated_event_versioned_definition.md | 17 - .../_generated_eventlist_v1_concept.md | 33 - .../_generated_eventlist_v1_definition.md | 19 - .../_generated_eventsource_v1_concept.md | 32 - .../_generated_eventsource_v1_definition.md | 18 - .../_generated_eviction_v1beta1_concept.md | 33 - .../_generated_eviction_v1beta1_definition.md | 19 - .../_generated_execaction_v1_concept.md | 31 - .../_generated_execaction_v1_definition.md | 17 - .../_generated_fcvolumesource_v1_concept.md | 34 - ..._generated_fcvolumesource_v1_definition.md | 20 - .../_generated_flexvolumesource_v1_concept.md | 35 - ...enerated_flexvolumesource_v1_definition.md | 21 - ...enerated_flockervolumesource_v1_concept.md | 32 - ...rated_flockervolumesource_v1_definition.md | 18 - ...cepersistentdiskvolumesource_v1_concept.md | 36 - ...ersistentdiskvolumesource_v1_definition.md | 22 - ...enerated_gitrepovolumesource_v1_concept.md | 33 - ...rated_gitrepovolumesource_v1_definition.md | 19 - ...erated_glusterfsvolumesource_v1_concept.md | 33 - ...ted_glusterfsvolumesource_v1_definition.md | 19 - ...versionfordiscovery_unversioned_concept.md | 32 - ...sionfordiscovery_unversioned_definition.md | 18 - .../_generated_handler_v1_concept.md | 33 - .../_generated_handler_v1_definition.md | 19 - ...ated_horizontalpodautoscaler_v1_concept.md | 71 - ...d_horizontalpodautoscaler_v1_definition.md | 21 - ...horizontalpodautoscaler_v1beta1_concept.md | 71 - ...izontalpodautoscaler_v1beta1_definition.md | 21 - ..._horizontalpodautoscalerlist_v1_concept.md | 33 - ...rizontalpodautoscalerlist_v1_definition.md | 19 - ...zontalpodautoscalerlist_v1beta1_concept.md | 33 - ...talpodautoscalerlist_v1beta1_definition.md | 19 - ..._horizontalpodautoscalerspec_v1_concept.md | 34 - ...rizontalpodautoscalerspec_v1_definition.md | 20 - ...zontalpodautoscalerspec_v1beta1_concept.md | 34 - ...talpodautoscalerspec_v1beta1_definition.md | 20 - ...orizontalpodautoscalerstatus_v1_concept.md | 35 - ...zontalpodautoscalerstatus_v1_definition.md | 21 - ...ntalpodautoscalerstatus_v1beta1_concept.md | 35 - ...lpodautoscalerstatus_v1beta1_definition.md | 21 - ...nerated_hostpathvolumesource_v1_concept.md | 31 - ...ated_hostpathvolumesource_v1_definition.md | 17 - .../_generated_httpgetaction_v1_concept.md | 35 - .../_generated_httpgetaction_v1_definition.md | 21 - .../_generated_httpheader_v1_concept.md | 32 - .../_generated_httpheader_v1_definition.md | 18 - ...nerated_httpingresspath_v1beta1_concept.md | 32 - ...ated_httpingresspath_v1beta1_definition.md | 18 - ...ed_httpingressrulevalue_v1beta1_concept.md | 31 - ...httpingressrulevalue_v1beta1_definition.md | 17 - .../_generated_info_version_concept.md | 38 - .../_generated_info_version_definition.md | 24 - .../_generated_ingress_v1beta1_concept.md | 66 - .../_generated_ingress_v1beta1_definition.md | 21 - ...enerated_ingressbackend_v1beta1_concept.md | 32 - ...rated_ingressbackend_v1beta1_definition.md | 18 - .../_generated_ingresslist_v1beta1_concept.md | 33 - ...enerated_ingresslist_v1beta1_definition.md | 19 - .../_generated_ingressrule_v1beta1_concept.md | 32 - ...enerated_ingressrule_v1beta1_definition.md | 18 - .../_generated_ingressspec_v1beta1_concept.md | 33 - ...enerated_ingressspec_v1beta1_definition.md | 19 - ...generated_ingressstatus_v1beta1_concept.md | 31 - ...erated_ingressstatus_v1beta1_definition.md | 17 - .../_generated_ingresstls_v1beta1_concept.md | 32 - ...generated_ingresstls_v1beta1_definition.md | 18 - .../_generated_intorstring_intstr_concept.md | 30 - ...generated_intorstring_intstr_definition.md | 16 - ..._generated_iscsivolumesource_v1_concept.md | 36 - ...nerated_iscsivolumesource_v1_definition.md | 22 - .../documents/_generated_job_v1_concept.md | 98 - .../documents/_generated_job_v1_definition.md | 21 - .../_generated_job_v1beta1_concept.md | 74 - .../_generated_job_v1beta1_definition.md | 21 - .../_generated_job_v2alpha1_concept.md | 74 - .../_generated_job_v2alpha1_definition.md | 21 - .../_generated_jobcondition_v1_concept.md | 36 - .../_generated_jobcondition_v1_definition.md | 22 - ..._generated_jobcondition_v1beta1_concept.md | 36 - ...nerated_jobcondition_v1beta1_definition.md | 22 - ...generated_jobcondition_v2alpha1_concept.md | 36 - ...erated_jobcondition_v2alpha1_definition.md | 22 - .../_generated_joblist_v1_concept.md | 33 - .../_generated_joblist_v1_definition.md | 19 - .../_generated_joblist_v1beta1_concept.md | 33 - .../_generated_joblist_v1beta1_definition.md | 19 - .../_generated_joblist_v2alpha1_concept.md | 33 - .../_generated_joblist_v2alpha1_definition.md | 19 - .../_generated_jobspec_v1_concept.md | 36 - .../_generated_jobspec_v1_definition.md | 22 - .../_generated_jobspec_v1beta1_concept.md | 36 - .../_generated_jobspec_v1beta1_definition.md | 22 - .../_generated_jobspec_v2alpha1_concept.md | 36 - .../_generated_jobspec_v2alpha1_definition.md | 22 - .../_generated_jobstatus_v1_concept.md | 36 - .../_generated_jobstatus_v1_definition.md | 22 - .../_generated_jobstatus_v1beta1_concept.md | 36 - ..._generated_jobstatus_v1beta1_definition.md | 22 - .../_generated_jobstatus_v2alpha1_concept.md | 36 - ...generated_jobstatus_v2alpha1_definition.md | 22 - ...erated_jobtemplatespec_v2alpha1_concept.md | 32 - ...ted_jobtemplatespec_v2alpha1_definition.md | 18 - .../_generated_keytopath_v1_concept.md | 33 - .../_generated_keytopath_v1_definition.md | 19 - ...rated_labelselector_unversioned_concept.md | 32 - ...ed_labelselector_unversioned_definition.md | 18 - ...selectorrequirement_unversioned_concept.md | 33 - ...ectorrequirement_unversioned_definition.md | 19 - .../_generated_lifecycle_v1_concept.md | 32 - .../_generated_lifecycle_v1_definition.md | 18 - .../_generated_limitrange_v1_concept.md | 54 - .../_generated_limitrange_v1_definition.md | 20 - .../_generated_limitrangeitem_v1_concept.md | 36 - ..._generated_limitrangeitem_v1_definition.md | 22 - .../_generated_limitrangelist_v1_concept.md | 33 - ..._generated_limitrangelist_v1_definition.md | 19 - .../_generated_limitrangespec_v1_concept.md | 31 - ..._generated_limitrangespec_v1_definition.md | 17 - ..._generated_listmeta_unversioned_concept.md | 32 - ...nerated_listmeta_unversioned_definition.md | 18 - ...enerated_loadbalanceringress_v1_concept.md | 32 - ...rated_loadbalanceringress_v1_definition.md | 18 - ...generated_loadbalancerstatus_v1_concept.md | 31 - ...erated_loadbalancerstatus_v1_definition.md | 17 - ...nerated_localobjectreference_v1_concept.md | 31 - ...ated_localobjectreference_v1_definition.md | 17 - ...ocalsubjectaccessreview_v1beta1_concept.md | 34 - ...lsubjectaccessreview_v1beta1_definition.md | 20 - .../_generated_namespace_v1_concept.md | 64 - .../_generated_namespace_v1_definition.md | 21 - .../_generated_namespacelist_v1_concept.md | 33 - .../_generated_namespacelist_v1_definition.md | 19 - .../_generated_namespacespec_v1_concept.md | 31 - .../_generated_namespacespec_v1_definition.md | 17 - .../_generated_namespacestatus_v1_concept.md | 31 - ...generated_namespacestatus_v1_definition.md | 17 - ...generated_networkpolicy_v1beta1_concept.md | 55 - ...erated_networkpolicy_v1beta1_definition.md | 20 - ...etworkpolicyingressrule_v1beta1_concept.md | 32 - ...orkpolicyingressrule_v1beta1_definition.md | 18 - ...rated_networkpolicylist_v1beta1_concept.md | 33 - ...ed_networkpolicylist_v1beta1_definition.md | 19 - ...rated_networkpolicypeer_v1beta1_concept.md | 32 - ...ed_networkpolicypeer_v1beta1_definition.md | 18 - ...rated_networkpolicyport_v1beta1_concept.md | 32 - ...ed_networkpolicyport_v1beta1_definition.md | 18 - ...rated_networkpolicyspec_v1beta1_concept.md | 32 - ...ed_networkpolicyspec_v1beta1_definition.md | 18 - .../_generated_nfsvolumesource_v1_concept.md | 33 - ...generated_nfsvolumesource_v1_definition.md | 19 - .../documents/_generated_node_v1_concept.md | 76 - .../_generated_node_v1_definition.md | 21 - .../_generated_nodeaddress_v1_concept.md | 32 - .../_generated_nodeaddress_v1_definition.md | 18 - .../_generated_nodecondition_v1_concept.md | 36 - .../_generated_nodecondition_v1_definition.md | 22 - ...enerated_nodedaemonendpoints_v1_concept.md | 31 - ...rated_nodedaemonendpoints_v1_definition.md | 17 - .../_generated_nodelist_v1_concept.md | 33 - .../_generated_nodelist_v1_definition.md | 19 - .../_generated_nodespec_v1_concept.md | 34 - .../_generated_nodespec_v1_definition.md | 20 - .../_generated_nodestatus_v1_concept.md | 40 - .../_generated_nodestatus_v1_definition.md | 26 - .../_generated_nodesysteminfo_v1_concept.md | 40 - ..._generated_nodesysteminfo_v1_definition.md | 26 - ...d_nonresourceattributes_v1beta1_concept.md | 32 - ...onresourceattributes_v1beta1_definition.md | 18 - ...enerated_objectfieldselector_v1_concept.md | 32 - ...rated_objectfieldselector_v1_definition.md | 18 - .../_generated_objectmeta_v1_concept.md | 45 - .../_generated_objectmeta_v1_definition.md | 31 - .../_generated_objectreference_v1_concept.md | 37 - ...generated_objectreference_v1_definition.md | 23 - .../_generated_ownerreference_v1_concept.md | 35 - ..._generated_ownerreference_v1_definition.md | 21 - .../_generated_patch_unversioned_concept.md | 29 - ..._generated_patch_unversioned_definition.md | 15 - .../_generated_persistentvolume_v1_concept.md | 86 - ...enerated_persistentvolume_v1_definition.md | 21 - ...erated_persistentvolumeclaim_v1_concept.md | 69 - ...ted_persistentvolumeclaim_v1_definition.md | 21 - ...ed_persistentvolumeclaimlist_v1_concept.md | 33 - ...persistentvolumeclaimlist_v1_definition.md | 19 - ...ed_persistentvolumeclaimspec_v1_concept.md | 34 - ...persistentvolumeclaimspec_v1_definition.md | 20 - ..._persistentvolumeclaimstatus_v1_concept.md | 33 - ...rsistentvolumeclaimstatus_v1_definition.md | 19 - ...stentvolumeclaimvolumesource_v1_concept.md | 32 - ...ntvolumeclaimvolumesource_v1_definition.md | 18 - ...nerated_persistentvolumelist_v1_concept.md | 33 - ...ated_persistentvolumelist_v1_definition.md | 19 - ...nerated_persistentvolumespec_v1_concept.md | 51 - ...ated_persistentvolumespec_v1_definition.md | 37 - ...rated_persistentvolumestatus_v1_concept.md | 33 - ...ed_persistentvolumestatus_v1_definition.md | 19 - ...onpersistentdiskvolumesource_v1_concept.md | 32 - ...ersistentdiskvolumesource_v1_definition.md | 18 - .../documents/_generated_pod_v1_concept.md | 103 - .../documents/_generated_pod_v1_definition.md | 21 - .../_generated_podcondition_v1_concept.md | 36 - .../_generated_podcondition_v1_definition.md | 22 - ...ted_poddisruptionbudget_v1beta1_concept.md | 70 - ..._poddisruptionbudget_v1beta1_definition.md | 21 - ...poddisruptionbudgetlist_v1beta1_concept.md | 33 - ...disruptionbudgetlist_v1beta1_definition.md | 19 - ...poddisruptionbudgetspec_v1beta1_concept.md | 32 - ...disruptionbudgetspec_v1beta1_definition.md | 18 - ...ddisruptionbudgetstatus_v1beta1_concept.md | 36 - ...sruptionbudgetstatus_v1beta1_definition.md | 22 - .../_generated_podlist_v1_concept.md | 33 - .../_generated_podlist_v1_definition.md | 19 - ...generated_podsecuritycontext_v1_concept.md | 35 - ...erated_podsecuritycontext_v1_definition.md | 21 - .../_generated_podspec_v1_concept.md | 47 - .../_generated_podspec_v1_definition.md | 33 - .../_generated_podstatus_v1_concept.md | 38 - .../_generated_podstatus_v1_definition.md | 24 - .../_generated_podtemplate_v1_concept.md | 55 - .../_generated_podtemplate_v1_definition.md | 20 - .../_generated_podtemplatelist_v1_concept.md | 33 - ...generated_podtemplatelist_v1_definition.md | 19 - .../_generated_podtemplatespec_v1_concept.md | 32 - ...generated_podtemplatespec_v1_definition.md | 18 - .../_generated_policyrule_v1alpha1_concept.md | 36 - ...enerated_policyrule_v1alpha1_definition.md | 22 - .../_generated_preconditions_v1_concept.md | 31 - .../_generated_preconditions_v1_definition.md | 17 - .../documents/_generated_probe_v1_concept.md | 38 - .../_generated_probe_v1_definition.md | 24 - .../_generated_quantity_resource_concept.md | 30 - ..._generated_quantity_resource_definition.md | 16 - ...enerated_quobytevolumesource_v1_concept.md | 35 - ...rated_quobytevolumesource_v1_definition.md | 21 - ..._generated_rawextension_runtime_concept.md | 58 - ...nerated_rawextension_runtime_definition.md | 44 - .../_generated_rbdvolumesource_v1_concept.md | 38 - ...generated_rbdvolumesource_v1_definition.md | 24 - .../_generated_replicaset_v1beta1_concept.md | 96 - ...generated_replicaset_v1beta1_definition.md | 21 - ...ted_replicasetcondition_v1beta1_concept.md | 35 - ..._replicasetcondition_v1beta1_definition.md | 21 - ...enerated_replicasetlist_v1beta1_concept.md | 33 - ...rated_replicasetlist_v1beta1_definition.md | 19 - ...enerated_replicasetspec_v1beta1_concept.md | 34 - ...rated_replicasetspec_v1beta1_definition.md | 20 - ...erated_replicasetstatus_v1beta1_concept.md | 36 - ...ted_replicasetstatus_v1beta1_definition.md | 22 - ...erated_replicationcontroller_v1_concept.md | 96 - ...ted_replicationcontroller_v1_definition.md | 21 - ...plicationcontrollercondition_v1_concept.md | 35 - ...cationcontrollercondition_v1_definition.md | 21 - ...ed_replicationcontrollerlist_v1_concept.md | 33 - ...replicationcontrollerlist_v1_definition.md | 19 - ...ed_replicationcontrollerspec_v1_concept.md | 34 - ...replicationcontrollerspec_v1_definition.md | 20 - ..._replicationcontrollerstatus_v1_concept.md | 36 - ...plicationcontrollerstatus_v1_definition.md | 22 - ...ated_resourceattributes_v1beta1_concept.md | 37 - ...d_resourceattributes_v1beta1_definition.md | 23 - ...erated_resourcefieldselector_v1_concept.md | 33 - ...ted_resourcefieldselector_v1_definition.md | 19 - .../_generated_resourcequota_v1_concept.md | 66 - .../_generated_resourcequota_v1_definition.md | 21 - ..._generated_resourcequotalist_v1_concept.md | 33 - ...nerated_resourcequotalist_v1_definition.md | 19 - ..._generated_resourcequotaspec_v1_concept.md | 32 - ...nerated_resourcequotaspec_v1_definition.md | 18 - ...enerated_resourcequotastatus_v1_concept.md | 32 - ...rated_resourcequotastatus_v1_definition.md | 18 - ...nerated_resourcerequirements_v1_concept.md | 32 - ...ated_resourcerequirements_v1_definition.md | 18 - .../_generated_role_v1alpha1_concept.md | 45 - .../_generated_role_v1alpha1_definition.md | 20 - ..._generated_rolebinding_v1alpha1_concept.md | 46 - ...nerated_rolebinding_v1alpha1_definition.md | 21 - ...erated_rolebindinglist_v1alpha1_concept.md | 33 - ...ted_rolebindinglist_v1alpha1_definition.md | 19 - .../_generated_rolelist_v1alpha1_concept.md | 33 - ..._generated_rolelist_v1alpha1_definition.md | 19 - .../_generated_roleref_v1alpha1_concept.md | 33 - .../_generated_roleref_v1alpha1_definition.md | 19 - ...enerated_rollbackconfig_v1beta1_concept.md | 31 - ...rated_rollbackconfig_v1beta1_definition.md | 17 - ...rollingupdatedeployment_v1beta1_concept.md | 32 - ...lingupdatedeployment_v1beta1_definition.md | 18 - .../documents/_generated_scale_v1_concept.md | 53 - .../_generated_scale_v1_definition.md | 20 - .../_generated_scale_v1beta1_concept.md | 54 - .../_generated_scale_v1beta1_definition.md | 20 - .../_generated_scalespec_v1_concept.md | 31 - .../_generated_scalespec_v1_definition.md | 17 - .../_generated_scalespec_v1beta1_concept.md | 31 - ..._generated_scalespec_v1beta1_definition.md | 17 - .../_generated_scalestatus_v1_concept.md | 32 - .../_generated_scalestatus_v1_definition.md | 18 - .../_generated_scalestatus_v1beta1_concept.md | 33 - ...enerated_scalestatus_v1beta1_definition.md | 19 - .../documents/_generated_secret_v1_concept.md | 47 - .../_generated_secret_v1_definition.md | 22 - ..._generated_secretkeyselector_v1_concept.md | 32 - ...nerated_secretkeyselector_v1_definition.md | 18 - .../_generated_secretlist_v1_concept.md | 33 - .../_generated_secretlist_v1_definition.md | 19 - ...generated_secretvolumesource_v1_concept.md | 35 - ...erated_secretvolumesource_v1_definition.md | 21 - .../_generated_securitycontext_v1_concept.md | 36 - ...generated_securitycontext_v1_definition.md | 22 - ...selfsubjectaccessreview_v1beta1_concept.md | 44 - ...fsubjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 32 - ...jectaccessreviewspec_v1beta1_definition.md | 18 - .../_generated_selinuxoptions_v1_concept.md | 34 - ..._generated_selinuxoptions_v1_definition.md | 20 - ...addressbyclientcidr_unversioned_concept.md | 32 - ...ressbyclientcidr_unversioned_definition.md | 18 - .../_generated_service_v1_concept.md | 99 - .../_generated_service_v1_definition.md | 21 - .../_generated_serviceaccount_v1_concept.md | 46 - ..._generated_serviceaccount_v1_definition.md | 21 - ...generated_serviceaccountlist_v1_concept.md | 33 - ...erated_serviceaccountlist_v1_definition.md | 19 - .../_generated_servicelist_v1_concept.md | 33 - .../_generated_servicelist_v1_definition.md | 19 - .../_generated_serviceport_v1_concept.md | 35 - .../_generated_serviceport_v1_definition.md | 21 - .../_generated_servicespec_v1_concept.md | 40 - .../_generated_servicespec_v1_definition.md | 26 - .../_generated_servicestatus_v1_concept.md | 31 - .../_generated_servicestatus_v1_definition.md | 17 - .../_generated_statefulset_v1beta1_concept.md | 72 - ...enerated_statefulset_v1beta1_definition.md | 24 - ...nerated_statefulsetlist_v1beta1_concept.md | 33 - ...ated_statefulsetlist_v1beta1_definition.md | 19 - ...nerated_statefulsetspec_v1beta1_concept.md | 35 - ...ated_statefulsetspec_v1beta1_definition.md | 21 - ...rated_statefulsetstatus_v1beta1_concept.md | 32 - ...ed_statefulsetstatus_v1beta1_definition.md | 18 - .../_generated_status_unversioned_concept.md | 37 - ...generated_status_unversioned_definition.md | 23 - ...nerated_statuscause_unversioned_concept.md | 33 - ...ated_statuscause_unversioned_definition.md | 19 - ...rated_statusdetails_unversioned_concept.md | 35 - ...ed_statusdetails_unversioned_definition.md | 21 - ..._generated_storageclass_v1beta1_concept.md | 48 - ...nerated_storageclass_v1beta1_definition.md | 23 - ...erated_storageclasslist_v1beta1_concept.md | 33 - ...ted_storageclasslist_v1beta1_definition.md | 19 - .../_generated_subject_v1alpha1_concept.md | 34 - .../_generated_subject_v1alpha1_definition.md | 20 - ...ted_subjectaccessreview_v1beta1_concept.md | 58 - ..._subjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 35 - ...jectaccessreviewspec_v1beta1_definition.md | 21 - ...bjectaccessreviewstatus_v1beta1_concept.md | 33 - ...ctaccessreviewstatus_v1beta1_definition.md | 19 - ...ed_subresourcereference_v1beta1_concept.md | 34 - ...subresourcereference_v1beta1_definition.md | 20 - .../_generated_tcpsocketaction_v1_concept.md | 31 - ...generated_tcpsocketaction_v1_definition.md | 17 - ...ated_thirdpartyresource_v1beta1_concept.md | 46 - ...d_thirdpartyresource_v1beta1_definition.md | 21 - ..._thirdpartyresourcelist_v1beta1_concept.md | 33 - ...irdpartyresourcelist_v1beta1_definition.md | 19 - .../_generated_time_unversioned_concept.md | 30 - .../_generated_time_unversioned_definition.md | 16 - .../_generated_tokenreview_v1beta1_concept.md | 54 - ...enerated_tokenreview_v1beta1_definition.md | 20 - ...nerated_tokenreviewspec_v1beta1_concept.md | 31 - ...ated_tokenreviewspec_v1beta1_definition.md | 17 - ...rated_tokenreviewstatus_v1beta1_concept.md | 33 - ...ed_tokenreviewstatus_v1beta1_definition.md | 19 - .../_generated_userinfo_v1beta1_concept.md | 34 - .../_generated_userinfo_v1beta1_definition.md | 20 - .../documents/_generated_volume_v1_concept.md | 54 - .../_generated_volume_v1_definition.md | 40 - .../_generated_volumemount_v1_concept.md | 34 - .../_generated_volumemount_v1_definition.md | 20 - ...pherevirtualdiskvolumesource_v1_concept.md | 32 - ...revirtualdiskvolumesource_v1_definition.md | 18 - .../v1.5/documents/_meta.md | 12 - .../v1.5/documents/_oldversions.md | 3 - .../v1.5/documents/_overview.md | 92 - .../v1.5/documents/_servicediscovery.md | 13 - .../v1.5/documents/_workloads.md | 14 - .../v1.5/documents/deployment-original.md | 518 ---- .../v1.5/documents/deployment.md | 397 --- docs/resources-reference/v1.5/manifest.json | 517 ---- docs/resources-reference/v1.5/runbrodocs.sh | 6 - .../kubectl/v1.5/documents/_app_management.md | 4 - .../kubectl/v1.5/documents/_cluster.md | 5 - .../kubectl/v1.5/documents/_config.md | 11 - .../kubectl/v1.5/documents/_definitions.md | 3 - .../v1.5/documents/_generated_annotate.md | 108 - .../v1.5/documents/_generated_api-versions.md | 14 - ..._generated_apigroup_unversioned_concept.md | 42 - ...nerated_apigroup_unversioned_definition.md | 22 - ...erated_apigrouplist_unversioned_concept.md | 30 - ...ted_apigrouplist_unversioned_definition.md | 18 - ...nerated_apiresource_unversioned_concept.md | 42 - ...ated_apiresource_unversioned_definition.md | 21 - ...ted_apiresourcelist_unversioned_concept.md | 31 - ..._apiresourcelist_unversioned_definition.md | 19 - .../_generated_apiversion_v1beta1_concept.md | 31 - ...generated_apiversion_v1beta1_definition.md | 19 - ...nerated_apiversions_unversioned_concept.md | 31 - ...ated_apiversions_unversioned_definition.md | 19 - .../v1.5/documents/_generated_apply.md | 70 - .../v1.5/documents/_generated_attach.md | 40 - .../_generated_attachedvolume_v1_concept.md | 32 - ..._generated_attachedvolume_v1_definition.md | 20 - .../v1.5/documents/_generated_autoscale.md | 51 - .../_generated_binding_v1_concept.md | 93 - .../_generated_binding_v1_definition.md | 19 - .../_generated_capabilities_v1_concept.md | 32 - .../_generated_capabilities_v1_definition.md | 20 - .../_generated_category_cluster_management.md | 1 - ...ted_category_declarative_app_management.md | 1 - ..._generated_category_deprecated_commands.md | 1 - ...ted_category_kubectl_settings_and_usage.md | 1 - .../v1.5/documents/_generated_certificate.md | 68 - ...tificatesigningrequest_v1alpha1_concept.md | 630 ----- ...icatesigningrequest_v1alpha1_definition.md | 21 - ...igningrequestcondition_v1alpha1_concept.md | 34 - ...ingrequestcondition_v1alpha1_definition.md | 22 - ...catesigningrequestlist_v1alpha1_concept.md | 31 - ...esigningrequestlist_v1alpha1_definition.md | 19 - ...catesigningrequestspec_v1alpha1_concept.md | 34 - ...esigningrequestspec_v1alpha1_definition.md | 22 - ...tesigningrequeststatus_v1alpha1_concept.md | 94 - ...igningrequeststatus_v1alpha1_definition.md | 20 - .../v1.5/documents/_generated_cluster-info.md | 70 - ..._generated_clusterrole_v1alpha1_concept.md | 601 ----- ...nerated_clusterrole_v1alpha1_definition.md | 20 - ...ted_clusterrolebinding_v1alpha1_concept.md | 542 ---- ..._clusterrolebinding_v1alpha1_definition.md | 21 - ...clusterrolebindinglist_v1alpha1_concept.md | 96 - ...sterrolebindinglist_v1alpha1_definition.md | 19 - ...erated_clusterrolelist_v1alpha1_concept.md | 31 - ...ted_clusterrolelist_v1alpha1_definition.md | 19 - .../v1.5/documents/_generated_completion.md | 30 - ...generated_componentcondition_v1_concept.md | 34 - ...erated_componentcondition_v1_definition.md | 22 - .../_generated_componentstatus_v1_concept.md | 162 -- ...generated_componentstatus_v1_definition.md | 20 - ...enerated_componentstatuslist_v1_concept.md | 31 - ...rated_componentstatuslist_v1_definition.md | 19 - .../v1.5/documents/_generated_config.md | 382 --- .../_generated_configmap_v1_concept.md | 675 ----- .../_generated_configmap_v1_definition.md | 20 - ...nerated_configmapkeyselector_v1_concept.md | 31 - ...ated_configmapkeyselector_v1_definition.md | 19 - .../_generated_configmaplist_v1_concept.md | 97 - .../_generated_configmaplist_v1_definition.md | 19 - .../_generated_container_v1_concept.md | 84 - .../_generated_container_v1_definition.md | 36 - .../_generated_containerimage_v1_concept.md | 32 - ..._generated_containerimage_v1_definition.md | 20 - .../_generated_containerport_v1_concept.md | 35 - .../_generated_containerport_v1_definition.md | 23 - .../_generated_containerstate_v1_concept.md | 33 - ..._generated_containerstate_v1_definition.md | 21 - ...erated_containerstaterunning_v1_concept.md | 31 - ...ted_containerstaterunning_v1_definition.md | 19 - ...ted_containerstateterminated_v1_concept.md | 37 - ..._containerstateterminated_v1_definition.md | 25 - ...erated_containerstatewaiting_v1_concept.md | 32 - ...ted_containerstatewaiting_v1_definition.md | 20 - .../_generated_containerstatus_v1_concept.md | 38 - ...generated_containerstatus_v1_definition.md | 26 - .../v1.5/documents/_generated_convert.md | 54 - .../v1.5/documents/_generated_cordon.md | 19 - .../kubectl/v1.5/documents/_generated_cp.md | 44 - ...ed_cputargetutilization_v1beta1_concept.md | 31 - ...cputargetutilization_v1beta1_definition.md | 19 - .../v1.5/documents/_generated_create.md | 585 ---- ..._crossversionobjectreference_v1_concept.md | 33 - ...ossversionobjectreference_v1_definition.md | 21 - .../_generated_daemonendpoint_v1_concept.md | 31 - ..._generated_daemonendpoint_v1_definition.md | 19 - .../_generated_daemonset_v1beta1_concept.md | 1122 -------- ..._generated_daemonset_v1beta1_definition.md | 21 - ...generated_daemonsetlist_v1beta1_concept.md | 31 - ...erated_daemonsetlist_v1beta1_definition.md | 19 - ...generated_daemonsetspec_v1beta1_concept.md | 32 - ...erated_daemonsetspec_v1beta1_definition.md | 20 - ...nerated_daemonsetstatus_v1beta1_concept.md | 34 - ...ated_daemonsetstatus_v1beta1_definition.md | 22 - .../v1.5/documents/_generated_delete.md | 87 - .../_generated_deleteoptions_v1_concept.md | 33 - .../_generated_deleteoptions_v1_definition.md | 21 - .../_generated_deployment_v1beta1_concept.md | 1952 -------------- ...generated_deployment_v1beta1_definition.md | 21 - ...ted_deploymentcondition_v1beta1_concept.md | 36 - ..._deploymentcondition_v1beta1_definition.md | 24 - ...enerated_deploymentlist_v1beta1_concept.md | 31 - ...rated_deploymentlist_v1beta1_definition.md | 19 - ...ated_deploymentrollback_v1beta1_concept.md | 32 - ...d_deploymentrollback_v1beta1_definition.md | 20 - ...enerated_deploymentspec_v1beta1_concept.md | 39 - ...rated_deploymentspec_v1beta1_definition.md | 27 - ...erated_deploymentstatus_v1beta1_concept.md | 227 -- ...ted_deploymentstatus_v1beta1_definition.md | 24 - ...ated_deploymentstrategy_v1beta1_concept.md | 32 - ...d_deploymentstrategy_v1beta1_definition.md | 20 - .../v1.5/documents/_generated_describe.md | 96 - .../v1.5/documents/_generated_drain.md | 44 - .../kubectl/v1.5/documents/_generated_edit.md | 53 - .../_generated_endpointaddress_v1_concept.md | 34 - ...generated_endpointaddress_v1_definition.md | 22 - .../_generated_endpointport_v1_concept.md | 33 - .../_generated_endpointport_v1_definition.md | 21 - .../_generated_endpoints_v1_concept.md | 747 ------ .../_generated_endpoints_v1_definition.md | 31 - .../_generated_endpointslist_v1_concept.md | 31 - .../_generated_endpointslist_v1_definition.md | 19 - .../_generated_endpointsubset_v1_concept.md | 40 - ..._generated_endpointsubset_v1_definition.md | 28 - .../documents/_generated_envvar_v1_concept.md | 33 - .../_generated_envvar_v1_definition.md | 21 - .../_generated_envvarsource_v1_concept.md | 34 - .../_generated_envvarsource_v1_definition.md | 22 - .../documents/_generated_event_v1_concept.md | 743 ------ .../_generated_event_v1_definition.md | 27 - .../_generated_event_versioned_concept.md | 31 - .../_generated_event_versioned_definition.md | 19 - .../_generated_eventlist_v1_concept.md | 31 - .../_generated_eventlist_v1_definition.md | 19 - .../_generated_eventsource_v1_concept.md | 32 - .../_generated_eventsource_v1_definition.md | 20 - .../_generated_eviction_v1beta1_concept.md | 31 - .../_generated_eviction_v1beta1_definition.md | 19 - .../kubectl/v1.5/documents/_generated_exec.md | 41 - .../_generated_execaction_v1_concept.md | 31 - .../_generated_execaction_v1_definition.md | 19 - .../v1.5/documents/_generated_explain.md | 64 - .../v1.5/documents/_generated_expose.md | 94 - .../kubectl/v1.5/documents/_generated_get.md | 120 - ...versionfordiscovery_unversioned_concept.md | 32 - ...sionfordiscovery_unversioned_definition.md | 20 - .../_generated_handler_v1_concept.md | 33 - .../_generated_handler_v1_definition.md | 21 - ...ated_horizontalpodautoscaler_v1_concept.md | 948 ------- ...d_horizontalpodautoscaler_v1_definition.md | 21 - ...horizontalpodautoscaler_v1beta1_concept.md | 948 ------- ...izontalpodautoscaler_v1beta1_definition.md | 21 - ..._horizontalpodautoscalerlist_v1_concept.md | 31 - ...rizontalpodautoscalerlist_v1_definition.md | 19 - ...zontalpodautoscalerlist_v1beta1_concept.md | 31 - ...talpodautoscalerlist_v1beta1_definition.md | 19 - ..._horizontalpodautoscalerspec_v1_concept.md | 34 - ...rizontalpodautoscalerspec_v1_definition.md | 22 - ...zontalpodautoscalerspec_v1beta1_concept.md | 34 - ...talpodautoscalerspec_v1beta1_definition.md | 22 - ...orizontalpodautoscalerstatus_v1_concept.md | 35 - ...zontalpodautoscalerstatus_v1_definition.md | 23 - ...ntalpodautoscalerstatus_v1beta1_concept.md | 35 - ...lpodautoscalerstatus_v1beta1_definition.md | 23 - .../_generated_httpgetaction_v1_concept.md | 35 - .../_generated_httpgetaction_v1_definition.md | 23 - .../_generated_httpheader_v1_concept.md | 32 - .../_generated_httpheader_v1_definition.md | 20 - .../_generated_info_version_concept.md | 38 - .../_generated_info_version_definition.md | 26 - .../_generated_ingress_v1beta1_concept.md | 696 ----- .../_generated_ingress_v1beta1_definition.md | 21 - ...enerated_ingressbackend_v1beta1_concept.md | 32 - ...rated_ingressbackend_v1beta1_definition.md | 20 - .../_generated_ingresslist_v1beta1_concept.md | 97 - ...enerated_ingresslist_v1beta1_definition.md | 19 - .../_generated_ingressrule_v1beta1_concept.md | 31 - ...enerated_ingressrule_v1beta1_definition.md | 19 - .../_generated_ingressspec_v1beta1_concept.md | 33 - ...enerated_ingressspec_v1beta1_definition.md | 21 - ...generated_ingressstatus_v1beta1_concept.md | 222 -- ...erated_ingressstatus_v1beta1_definition.md | 19 - .../_generated_ingresstls_v1beta1_concept.md | 32 - ...generated_ingresstls_v1beta1_definition.md | 20 - .../_generated_intorstring_intstr_concept.md | 30 - ...generated_intorstring_intstr_definition.md | 18 - .../documents/_generated_job_v1_concept.md | 1210 --------- .../documents/_generated_job_v1_definition.md | 21 - .../_generated_job_v1beta1_concept.md | 1409 ---------- .../_generated_job_v1beta1_definition.md | 21 - .../_generated_jobcondition_v1_concept.md | 36 - .../_generated_jobcondition_v1_definition.md | 24 - ..._generated_jobcondition_v1beta1_concept.md | 36 - ...nerated_jobcondition_v1beta1_definition.md | 24 - .../_generated_joblist_v1_concept.md | 97 - .../_generated_joblist_v1_definition.md | 19 - .../_generated_joblist_v1beta1_concept.md | 31 - .../_generated_joblist_v1beta1_definition.md | 19 - .../_generated_jobspec_v1_concept.md | 36 - .../_generated_jobspec_v1_definition.md | 24 - .../_generated_jobspec_v1beta1_concept.md | 36 - .../_generated_jobspec_v1beta1_definition.md | 24 - .../_generated_jobstatus_v1_concept.md | 227 -- .../_generated_jobstatus_v1_definition.md | 24 - .../_generated_jobstatus_v1beta1_concept.md | 36 - ..._generated_jobstatus_v1beta1_definition.md | 24 - .../v1.5/documents/_generated_label.md | 76 - ...rated_labelselector_unversioned_concept.md | 32 - ...ed_labelselector_unversioned_definition.md | 20 - ...selectorrequirement_unversioned_concept.md | 33 - ...ectorrequirement_unversioned_definition.md | 21 - .../_generated_lifecycle_v1_concept.md | 32 - .../_generated_lifecycle_v1_definition.md | 20 - .../_generated_limitrange_v1_concept.md | 745 ------ .../_generated_limitrange_v1_definition.md | 20 - .../_generated_limitrangeitem_v1_concept.md | 36 - ..._generated_limitrangeitem_v1_definition.md | 24 - .../_generated_limitrangelist_v1_concept.md | 31 - ..._generated_limitrangelist_v1_definition.md | 19 - .../_generated_limitrangespec_v1_concept.md | 31 - ..._generated_limitrangespec_v1_definition.md | 19 - ..._generated_listmeta_unversioned_concept.md | 32 - ...nerated_listmeta_unversioned_definition.md | 20 - ...enerated_loadbalanceringress_v1_concept.md | 32 - ...rated_loadbalanceringress_v1_definition.md | 20 - ...generated_loadbalancerstatus_v1_concept.md | 31 - ...erated_loadbalancerstatus_v1_definition.md | 19 - ...nerated_localobjectreference_v1_concept.md | 31 - ...ated_localobjectreference_v1_definition.md | 19 - ...ocalsubjectaccessreview_v1beta1_concept.md | 94 - ...lsubjectaccessreview_v1beta1_definition.md | 20 - .../kubectl/v1.5/documents/_generated_logs.md | 59 - .../_generated_namespace_v1_concept.md | 566 ---- .../_generated_namespace_v1_definition.md | 21 - .../_generated_namespacelist_v1_concept.md | 96 - .../_generated_namespacelist_v1_definition.md | 19 - .../_generated_namespacespec_v1_concept.md | 31 - .../_generated_namespacespec_v1_definition.md | 19 - .../_generated_namespacestatus_v1_concept.md | 219 -- ...generated_namespacestatus_v1_definition.md | 19 - ...generated_networkpolicy_v1beta1_concept.md | 685 ----- ...erated_networkpolicy_v1beta1_definition.md | 20 - ...etworkpolicyingressrule_v1beta1_concept.md | 32 - ...orkpolicyingressrule_v1beta1_definition.md | 20 - ...rated_networkpolicylist_v1beta1_concept.md | 97 - ...ed_networkpolicylist_v1beta1_definition.md | 19 - ...rated_networkpolicypeer_v1beta1_concept.md | 32 - ...ed_networkpolicypeer_v1beta1_definition.md | 20 - ...rated_networkpolicyport_v1beta1_concept.md | 32 - ...ed_networkpolicyport_v1beta1_definition.md | 20 - ...rated_networkpolicyspec_v1beta1_concept.md | 32 - ...ed_networkpolicyspec_v1beta1_definition.md | 20 - .../documents/_generated_node_v1_concept.md | 578 ---- .../_generated_node_v1_definition.md | 21 - .../_generated_nodeaddress_v1_concept.md | 32 - .../_generated_nodeaddress_v1_definition.md | 20 - .../_generated_nodecondition_v1_concept.md | 36 - .../_generated_nodecondition_v1_definition.md | 24 - ...enerated_nodedaemonendpoints_v1_concept.md | 31 - ...rated_nodedaemonendpoints_v1_definition.md | 19 - .../_generated_nodelist_v1_concept.md | 96 - .../_generated_nodelist_v1_definition.md | 19 - .../_generated_nodespec_v1_concept.md | 34 - .../_generated_nodespec_v1_definition.md | 22 - .../_generated_nodestatus_v1_concept.md | 228 -- .../_generated_nodestatus_v1_definition.md | 28 - .../_generated_nodesysteminfo_v1_concept.md | 40 - ..._generated_nodesysteminfo_v1_definition.md | 28 - ...d_nonresourceattributes_v1beta1_concept.md | 32 - ...onresourceattributes_v1beta1_definition.md | 20 - ...enerated_objectfieldselector_v1_concept.md | 32 - ...rated_objectfieldselector_v1_definition.md | 20 - .../_generated_objectmeta_v1_concept.md | 45 - .../_generated_objectmeta_v1_definition.md | 33 - .../_generated_objectreference_v1_concept.md | 37 - ...generated_objectreference_v1_definition.md | 25 - .../v1.5/documents/_generated_options.md | 14 - .../_generated_ownerreference_v1_concept.md | 35 - ..._generated_ownerreference_v1_definition.md | 23 - .../v1.5/documents/_generated_patch.md | 61 - .../_generated_patch_unversioned_concept.md | 29 - ..._generated_patch_unversioned_definition.md | 17 - .../_generated_persistentvolume_v1_concept.md | 631 ----- ...enerated_persistentvolume_v1_definition.md | 21 - ...erated_persistentvolumeclaim_v1_concept.md | 946 ------- ...ted_persistentvolumeclaim_v1_definition.md | 21 - ...ed_persistentvolumeclaimlist_v1_concept.md | 31 - ...persistentvolumeclaimlist_v1_definition.md | 19 - ...ed_persistentvolumeclaimspec_v1_concept.md | 34 - ...persistentvolumeclaimspec_v1_definition.md | 22 - ..._persistentvolumeclaimstatus_v1_concept.md | 33 - ...rsistentvolumeclaimstatus_v1_definition.md | 21 - ...nerated_persistentvolumelist_v1_concept.md | 31 - ...ated_persistentvolumelist_v1_definition.md | 19 - ...nerated_persistentvolumespec_v1_concept.md | 34 - ...ated_persistentvolumespec_v1_definition.md | 22 - ...rated_persistentvolumestatus_v1_concept.md | 221 -- ...ed_persistentvolumestatus_v1_definition.md | 21 - .../documents/_generated_pod_v1_concept.md | 1066 -------- .../documents/_generated_pod_v1_definition.md | 21 - .../_generated_podcondition_v1_concept.md | 36 - .../_generated_podcondition_v1_definition.md | 24 - ...ted_poddisruptionbudget_v1beta1_concept.md | 761 ------ ..._poddisruptionbudget_v1beta1_definition.md | 21 - ...poddisruptionbudgetlist_v1beta1_concept.md | 31 - ...disruptionbudgetlist_v1beta1_definition.md | 19 - ...poddisruptionbudgetspec_v1beta1_concept.md | 32 - ...disruptionbudgetspec_v1beta1_definition.md | 20 - ...ddisruptionbudgetstatus_v1beta1_concept.md | 227 -- ...sruptionbudgetstatus_v1beta1_definition.md | 24 - .../_generated_podlist_v1_concept.md | 31 - .../_generated_podlist_v1_definition.md | 19 - ...generated_podsecuritycontext_v1_concept.md | 35 - ...erated_podsecuritycontext_v1_definition.md | 23 - .../_generated_podspec_v1_concept.md | 47 - .../_generated_podspec_v1_definition.md | 35 - .../_generated_podstatus_v1_concept.md | 38 - .../_generated_podstatus_v1_definition.md | 26 - .../_generated_podtemplate_v1_concept.md | 685 ----- .../_generated_podtemplate_v1_definition.md | 20 - .../_generated_podtemplatelist_v1_concept.md | 97 - ...generated_podtemplatelist_v1_definition.md | 19 - .../_generated_podtemplatespec_v1_concept.md | 32 - ...generated_podtemplatespec_v1_definition.md | 20 - .../_generated_policyrule_v1alpha1_concept.md | 36 - ...enerated_policyrule_v1alpha1_definition.md | 24 - .../v1.5/documents/_generated_port-forward.md | 44 - .../_generated_preconditions_v1_concept.md | 31 - .../_generated_preconditions_v1_definition.md | 19 - .../documents/_generated_probe_v1_concept.md | 35 - .../_generated_probe_v1_definition.md | 23 - .../v1.5/documents/_generated_proxy.md | 62 - .../_generated_quantity_resource_concept.md | 30 - ..._generated_quantity_resource_definition.md | 18 - ..._generated_rawextension_runtime_concept.md | 58 - ...nerated_rawextension_runtime_definition.md | 46 - .../v1.5/documents/_generated_replace.md | 61 - .../_generated_replicaset_v1beta1_concept.md | 1183 --------- ...generated_replicaset_v1beta1_definition.md | 21 - ...ted_replicasetcondition_v1beta1_concept.md | 35 - ..._replicasetcondition_v1beta1_definition.md | 23 - ...enerated_replicasetlist_v1beta1_concept.md | 31 - ...rated_replicasetlist_v1beta1_definition.md | 19 - ...enerated_replicasetspec_v1beta1_concept.md | 34 - ...rated_replicasetspec_v1beta1_definition.md | 22 - ...erated_replicasetstatus_v1beta1_concept.md | 36 - ...ted_replicasetstatus_v1beta1_definition.md | 24 - ...erated_replicationcontroller_v1_concept.md | 811 ------ ...ted_replicationcontroller_v1_definition.md | 21 - ...plicationcontrollercondition_v1_concept.md | 35 - ...cationcontrollercondition_v1_definition.md | 23 - ...ed_replicationcontrollerlist_v1_concept.md | 31 - ...replicationcontrollerlist_v1_definition.md | 19 - ...ed_replicationcontrollerspec_v1_concept.md | 34 - ...replicationcontrollerspec_v1_definition.md | 22 - ..._replicationcontrollerstatus_v1_concept.md | 227 -- ...plicationcontrollerstatus_v1_definition.md | 24 - ...ated_resourceattributes_v1beta1_concept.md | 37 - ...d_resourceattributes_v1beta1_definition.md | 25 - ...erated_resourcefieldselector_v1_concept.md | 33 - ...ted_resourcefieldselector_v1_definition.md | 21 - .../_generated_resourcequota_v1_concept.md | 882 ------- .../_generated_resourcequota_v1_definition.md | 21 - ..._generated_resourcequotalist_v1_concept.md | 97 - ...nerated_resourcequotalist_v1_definition.md | 19 - ..._generated_resourcequotaspec_v1_concept.md | 32 - ...nerated_resourcequotaspec_v1_definition.md | 20 - ...enerated_resourcequotastatus_v1_concept.md | 32 - ...rated_resourcequotastatus_v1_definition.md | 20 - ...nerated_resourcerequirements_v1_concept.md | 32 - ...ated_resourcerequirements_v1_definition.md | 20 - .../_generated_role_v1alpha1_concept.md | 730 ----- .../_generated_role_v1alpha1_definition.md | 20 - ..._generated_rolebinding_v1alpha1_concept.md | 670 ----- ...nerated_rolebinding_v1alpha1_definition.md | 21 - ...erated_rolebindinglist_v1alpha1_concept.md | 97 - ...ted_rolebindinglist_v1alpha1_definition.md | 19 - .../_generated_rolelist_v1alpha1_concept.md | 31 - ..._generated_rolelist_v1alpha1_definition.md | 19 - .../_generated_roleref_v1alpha1_concept.md | 33 - .../_generated_roleref_v1alpha1_definition.md | 21 - ...enerated_rollbackconfig_v1beta1_concept.md | 31 - ...rated_rollbackconfig_v1beta1_definition.md | 19 - .../documents/_generated_rolling-update.md | 73 - ...rollingupdatedeployment_v1beta1_concept.md | 32 - ...lingupdatedeployment_v1beta1_definition.md | 20 - .../v1.5/documents/_generated_rollout.md | 188 -- .../kubectl/v1.5/documents/_generated_run.md | 121 - .../v1.5/documents/_generated_scale.md | 62 - .../documents/_generated_scale_v1_concept.md | 237 -- .../_generated_scale_v1_definition.md | 20 - .../_generated_scale_v1beta1_concept.md | 52 - .../_generated_scale_v1beta1_definition.md | 20 - .../_generated_scalespec_v1_concept.md | 31 - .../_generated_scalespec_v1_definition.md | 19 - .../_generated_scalespec_v1beta1_concept.md | 31 - ..._generated_scalespec_v1beta1_definition.md | 19 - .../_generated_scalestatus_v1_concept.md | 32 - .../_generated_scalestatus_v1_definition.md | 20 - .../_generated_scalestatus_v1beta1_concept.md | 33 - ...enerated_scalestatus_v1beta1_definition.md | 21 - .../documents/_generated_secret_v1_concept.md | 738 ------ .../_generated_secret_v1_definition.md | 22 - ..._generated_secretkeyselector_v1_concept.md | 31 - ...nerated_secretkeyselector_v1_definition.md | 19 - .../_generated_secretlist_v1_concept.md | 31 - .../_generated_secretlist_v1_definition.md | 19 - .../_generated_securitycontext_v1_concept.md | 36 - ...generated_securitycontext_v1_definition.md | 24 - ...selfsubjectaccessreview_v1beta1_concept.md | 103 - ...fsubjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 32 - ...jectaccessreviewspec_v1beta1_definition.md | 20 - .../_generated_selinuxoptions_v1_concept.md | 34 - ..._generated_selinuxoptions_v1_definition.md | 22 - ...addressbyclientcidr_unversioned_concept.md | 32 - ...ressbyclientcidr_unversioned_definition.md | 20 - .../_generated_service_v1_concept.md | 1081 -------- .../_generated_service_v1_definition.md | 21 - .../_generated_serviceaccount_v1_concept.md | 737 ------ ..._generated_serviceaccount_v1_definition.md | 21 - ...generated_serviceaccountlist_v1_concept.md | 31 - ...erated_serviceaccountlist_v1_definition.md | 19 - .../_generated_servicelist_v1_concept.md | 31 - .../_generated_servicelist_v1_definition.md | 19 - .../_generated_serviceport_v1_concept.md | 35 - .../_generated_serviceport_v1_definition.md | 23 - .../_generated_servicespec_v1_concept.md | 40 - .../_generated_servicespec_v1_definition.md | 28 - .../_generated_servicestatus_v1_concept.md | 222 -- .../_generated_servicestatus_v1_definition.md | 19 - .../kubectl/v1.5/documents/_generated_set.md | 142 - .../_generated_statefulset_v1beta1_concept.md | 949 ------- ...enerated_statefulset_v1beta1_definition.md | 24 - ...nerated_statefulsetlist_v1beta1_concept.md | 31 - ...ated_statefulsetlist_v1beta1_definition.md | 19 - ...nerated_statefulsetspec_v1beta1_concept.md | 35 - ...ated_statefulsetspec_v1beta1_definition.md | 23 - ...rated_statefulsetstatus_v1beta1_concept.md | 32 - ...ed_statefulsetstatus_v1beta1_definition.md | 20 - .../_generated_status_unversioned_concept.md | 35 - ...generated_status_unversioned_definition.md | 23 - ...nerated_statuscause_unversioned_concept.md | 33 - ...ated_statuscause_unversioned_definition.md | 21 - ...rated_statusdetails_unversioned_concept.md | 35 - ...ed_statusdetails_unversioned_definition.md | 23 - .../kubectl/v1.5/documents/_generated_stop.md | 52 - ..._generated_storageclass_v1beta1_concept.md | 550 ---- ...nerated_storageclass_v1beta1_definition.md | 23 - ...erated_storageclasslist_v1beta1_concept.md | 96 - ...ted_storageclasslist_v1beta1_definition.md | 19 - .../_generated_subject_v1alpha1_concept.md | 34 - .../_generated_subject_v1alpha1_definition.md | 22 - ...ted_subjectaccessreview_v1beta1_concept.md | 117 - ..._subjectaccessreview_v1beta1_definition.md | 20 - ...subjectaccessreviewspec_v1beta1_concept.md | 35 - ...jectaccessreviewspec_v1beta1_definition.md | 23 - ...bjectaccessreviewstatus_v1beta1_concept.md | 33 - ...ctaccessreviewstatus_v1beta1_definition.md | 21 - ...ed_subresourcereference_v1beta1_concept.md | 34 - ...subresourcereference_v1beta1_definition.md | 22 - .../v1.5/documents/_generated_taint.md | 56 - .../_generated_tcpsocketaction_v1_concept.md | 31 - ...generated_tcpsocketaction_v1_definition.md | 19 - ...ated_thirdpartyresource_v1beta1_concept.md | 548 ---- ...d_thirdpartyresource_v1beta1_definition.md | 21 - ..._thirdpartyresourcelist_v1beta1_concept.md | 96 - ...irdpartyresourcelist_v1beta1_definition.md | 19 - .../_generated_time_unversioned_concept.md | 30 - .../_generated_time_unversioned_definition.md | 18 - .../_generated_tokenreview_v1beta1_concept.md | 113 - ...enerated_tokenreview_v1beta1_definition.md | 20 - ...nerated_tokenreviewspec_v1beta1_concept.md | 31 - ...ated_tokenreviewspec_v1beta1_definition.md | 19 - ...rated_tokenreviewstatus_v1beta1_concept.md | 33 - ...ed_tokenreviewstatus_v1beta1_definition.md | 21 - .../kubectl/v1.5/documents/_generated_top.md | 102 - .../v1.5/documents/_generated_uncordon.md | 19 - .../_generated_userinfo_v1beta1_concept.md | 34 - .../_generated_userinfo_v1beta1_definition.md | 22 - .../v1.5/documents/_generated_version.md | 22 - .../documents/_generated_volume_v1_concept.md | 31 - .../_generated_volume_v1_definition.md | 19 - .../_generated_volumemount_v1_concept.md | 34 - .../_generated_volumemount_v1_definition.md | 22 - .../v1.5/documents/_getting_started.md | 11 - .../kubectl/v1.5/documents/_meta.md | 12 - .../kubectl/v1.5/documents/_oldversions.md | 3 - .../kubectl/v1.5/documents/_overview.md | 92 - .../v1.5/documents/_servicediscovery.md | 13 - .../v1.5/documents/_working_with_apps.md | 8 - .../kubectl/v1.5/documents/_workloads.md | 14 - .../v1.5/documents/deployment-original.md | 518 ---- .../kubectl/v1.5/documents/deployment.md | 397 --- docs/user-guide/kubectl/v1.5/manifest.json | 141 - docs/user-guide/kubectl/v1.5/runbrodocs.sh | 6 - 1561 files changed, 116607 deletions(-) delete mode 100644 docs/api-reference/v1.5/documents/_cluster.md delete mode 100644 docs/api-reference/v1.5/documents/_config.md delete mode 100644 docs/api-reference/v1.5/documents/_definitions.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_capabilities_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_capabilities_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentcondition_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentcondition_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_container_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_container_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerimage_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerimage_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerport_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerport_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstate_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstate_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_containerstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_daemonsetstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentcondition_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentcondition_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentstrategy_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_deploymentstrategy_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointaddress_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointaddress_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointport_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointport_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpoints_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpoints_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointslist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointslist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointsubset_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_endpointsubset_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_envvar_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_envvar_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_envvarsource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_envvarsource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_event_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_event_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_event_versioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_event_versioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eventlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eventlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eventsource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eventsource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_execaction_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_execaction_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_groupversionfordiscovery_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_groupversionfordiscovery_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_handler_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_handler_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpheader_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpheader_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_info_version_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_info_version_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingresstls_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ingresstls_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_intorstring_intstr_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_intorstring_intstr_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_job_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobcondition_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobspec_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobstatus_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobtemplatespec_v2alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_jobtemplatespec_v2alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_keytopath_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_keytopath_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_labelselector_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_labelselector_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_labelselectorrequirement_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_labelselectorrequirement_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_lifecycle_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_lifecycle_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrange_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrange_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangeitem_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangeitem_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_limitrangespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_listmeta_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_listmeta_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_loadbalanceringress_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_loadbalanceringress_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_loadbalancerstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_loadbalancerstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespace_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespace_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_namespacestatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicypeer_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicypeer_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyport_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyport_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_networkpolicyspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_node_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_node_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodeaddress_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodeaddress_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodecondition_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodecondition_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodedaemonendpoints_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodedaemonendpoints_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodestatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodestatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodesysteminfo_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nodesysteminfo_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nonresourceattributes_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_nonresourceattributes_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectmeta_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectmeta_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectreference_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_objectreference_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ownerreference_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_ownerreference_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_patch_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_patch_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumestatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_persistentvolumestatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_pod_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_pod_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podcondition_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podcondition_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podsecuritycontext_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podsecuritycontext_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplate_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplate_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplatespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_podtemplatespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_policyrule_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_policyrule_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_preconditions_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_preconditions_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_probe_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_probe_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_quantity_resource_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_quantity_resource_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rawextension_runtime_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rawextension_runtime_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetcondition_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetcondition_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollercondition_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollercondition_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourceattributes_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourceattributes_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequota_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequota_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotaspec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotaspec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcequotastatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcerequirements_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_resourcerequirements_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_role_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_role_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_roleref_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_roleref_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rollbackconfig_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rollbackconfig_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scale_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scale_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scale_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scale_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalespec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalespec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalestatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalestatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalestatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_scalestatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secret_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secret_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_securitycontext_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_securitycontext_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selinuxoptions_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_selinuxoptions_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_service_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_service_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicelist_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicelist_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceport_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_serviceport_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicespec_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicespec_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicestatus_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_servicestatus_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_status_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_status_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statuscause_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statuscause_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statusdetails_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_statusdetails_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subject_v1alpha1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subject_v1alpha1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subresourcereference_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_subresourcereference_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_time_unversioned_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_time_unversioned_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreviewspec_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreviewspec_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreviewstatus_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_tokenreviewstatus_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_userinfo_v1beta1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_userinfo_v1beta1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_volume_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_volume_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_volumemount_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_volumemount_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md delete mode 100644 docs/api-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md delete mode 100644 docs/api-reference/v1.5/documents/_meta.md delete mode 100644 docs/api-reference/v1.5/documents/_oldversions.md delete mode 100644 docs/api-reference/v1.5/documents/_overview.md delete mode 100644 docs/api-reference/v1.5/documents/_servicediscovery.md delete mode 100644 docs/api-reference/v1.5/documents/_workloads.md delete mode 100644 docs/api-reference/v1.5/documents/deployment-original.md delete mode 100644 docs/api-reference/v1.5/documents/deployment.md delete mode 100644 docs/api-reference/v1.5/manifest.json delete mode 100755 docs/api-reference/v1.5/runbrodocs.sh delete mode 100644 docs/resources-reference/v1.5/documents/_cluster.md delete mode 100644 docs/resources-reference/v1.5/documents/_config.md delete mode 100644 docs/resources-reference/v1.5/documents/_definitions.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiresource_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiversion_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiversion_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_attachedvolume_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_attachedvolume_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_binding_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_binding_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_capabilities_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_capabilities_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentcondition_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentcondition_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmap_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmap_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmaplist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_container_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_container_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerimage_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerimage_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerport_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerport_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstate_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstate_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstaterunning_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstaterunning_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstateterminated_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstateterminated_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstatewaiting_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstatewaiting_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_containerstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonendpoint_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonendpoint_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonset_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_daemonsetstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deleteoptions_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deployment_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentcondition_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentcondition_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentstrategy_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_deploymentstrategy_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumefile_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_downwardapivolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_emptydirvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointaddress_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointaddress_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointport_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointport_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpoints_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpoints_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointslist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointsubset_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_endpointsubset_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_envvar_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_envvar_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_envvarsource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_envvarsource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_event_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_event_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_event_versioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_event_versioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eventlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eventlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eventsource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eventsource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_eviction_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_execaction_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_execaction_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_fcvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_flexvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_flockervolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_gcepersistentdiskvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_gitrepovolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_glusterfsvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_groupversionfordiscovery_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_groupversionfordiscovery_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_handler_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_handler_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_hostpathvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpgetaction_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpheader_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpheader_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingresspath_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_httpingressrulevalue_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_info_version_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_info_version_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingress_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingresslist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressrule_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingresstls_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ingresstls_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_intorstring_intstr_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_intorstring_intstr_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_iscsivolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_job_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobcondition_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_joblist_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobspec_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobstatus_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobtemplatespec_v2alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_jobtemplatespec_v2alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_keytopath_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_keytopath_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_labelselector_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_labelselector_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_labelselectorrequirement_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_labelselectorrequirement_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_lifecycle_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_lifecycle_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrange_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrange_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangeitem_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangeitem_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_limitrangespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_listmeta_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_listmeta_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_loadbalanceringress_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_loadbalanceringress_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_loadbalancerstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_loadbalancerstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_localobjectreference_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespace_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespace_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacestatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_namespacestatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicypeer_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicypeer_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyport_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyport_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_networkpolicyspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nfsvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_node_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_node_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodeaddress_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodeaddress_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodecondition_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodecondition_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodedaemonendpoints_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodedaemonendpoints_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodestatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodestatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodesysteminfo_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nodesysteminfo_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nonresourceattributes_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_nonresourceattributes_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectfieldselector_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectmeta_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectmeta_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectreference_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_objectreference_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ownerreference_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_ownerreference_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_patch_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_patch_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolume_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumeclaimvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumestatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_persistentvolumestatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_photonpersistentdiskvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_pod_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_pod_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podcondition_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podcondition_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podsecuritycontext_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podsecuritycontext_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplate_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplatelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplatespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_podtemplatespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_policyrule_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_policyrule_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_preconditions_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_preconditions_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_probe_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_probe_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_quantity_resource_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_quantity_resource_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_quobytevolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rawextension_runtime_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rawextension_runtime_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rbdvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicaset_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetcondition_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetcondition_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicasetstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontroller_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollercondition_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollercondition_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_replicationcontrollerstatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourceattributes_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourceattributes_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcefieldselector_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequota_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotalist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotaspec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotaspec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotastatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcequotastatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcerequirements_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_resourcerequirements_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_role_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rolelist_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_roleref_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_roleref_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rollbackconfig_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rollbackconfig_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scale_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scale_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scale_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalespec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalespec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalestatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalestatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalestatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_scalestatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secret_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secret_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretkeyselector_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_secretvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_securitycontext_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_securitycontext_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selinuxoptions_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_selinuxoptions_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_service_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_service_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceaccount_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceaccountlist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicelist_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicelist_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceport_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_serviceport_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicespec_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicespec_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicestatus_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_servicestatus_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulset_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_status_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_status_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statuscause_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statuscause_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statusdetails_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_statusdetails_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_storageclass_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subject_v1alpha1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subject_v1alpha1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subresourcereference_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_subresourcereference_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tcpsocketaction_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_time_unversioned_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_time_unversioned_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreview_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreviewspec_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreviewspec_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreviewstatus_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_tokenreviewstatus_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_userinfo_v1beta1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_userinfo_v1beta1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_volume_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_volume_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_volumemount_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_volumemount_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_concept.md delete mode 100644 docs/resources-reference/v1.5/documents/_generated_vspherevirtualdiskvolumesource_v1_definition.md delete mode 100644 docs/resources-reference/v1.5/documents/_meta.md delete mode 100644 docs/resources-reference/v1.5/documents/_oldversions.md delete mode 100644 docs/resources-reference/v1.5/documents/_overview.md delete mode 100644 docs/resources-reference/v1.5/documents/_servicediscovery.md delete mode 100644 docs/resources-reference/v1.5/documents/_workloads.md delete mode 100644 docs/resources-reference/v1.5/documents/deployment-original.md delete mode 100644 docs/resources-reference/v1.5/documents/deployment.md delete mode 100644 docs/resources-reference/v1.5/manifest.json delete mode 100755 docs/resources-reference/v1.5/runbrodocs.sh delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_app_management.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_cluster.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_config.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_definitions.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_annotate.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_api-versions.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apigroup_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apigroup_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apigrouplist_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apigrouplist_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiresource_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiresource_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiversion_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiversion_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiversions_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apiversions_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_apply.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_attach.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_attachedvolume_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_attachedvolume_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_autoscale.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_binding_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_binding_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_capabilities_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_capabilities_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_category_cluster_management.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_category_declarative_app_management.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_category_deprecated_commands.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_category_kubectl_settings_and_usage.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificate.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_cluster-info.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_completion.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentcondition_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentcondition_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentstatuslist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_componentstatuslist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_config.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmap_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmap_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmapkeyselector_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmapkeyselector_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmaplist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_configmaplist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_container_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_container_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerimage_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerimage_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerport_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerport_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstate_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstate_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstaterunning_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstaterunning_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstateterminated_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstateterminated_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstatewaiting_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstatewaiting_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_containerstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_convert.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_cordon.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_cp.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_create.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonendpoint_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonendpoint_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonset_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonset_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_daemonsetstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_delete.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deleteoptions_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deleteoptions_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deployment_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deployment_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentcondition_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentcondition_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentrollback_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentrollback_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentstrategy_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_deploymentstrategy_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_describe.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_drain.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_edit.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointaddress_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointaddress_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointport_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointport_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpoints_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpoints_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointslist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointslist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointsubset_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_endpointsubset_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_envvar_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_envvar_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_envvarsource_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_envvarsource_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_event_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_event_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_event_versioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_event_versioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eventlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eventlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eventsource_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eventsource_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eviction_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_eviction_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_exec.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_execaction_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_execaction_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_explain.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_expose.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_get.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_groupversionfordiscovery_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_groupversionfordiscovery_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_handler_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_handler_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscaler_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscaler_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscaler_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_horizontalpodautoscalerstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_httpgetaction_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_httpgetaction_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_httpheader_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_httpheader_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_info_version_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_info_version_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingress_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingress_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressbackend_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressbackend_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingresslist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingresslist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressrule_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressrule_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingressstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingresstls_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ingresstls_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_intorstring_intstr_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_intorstring_intstr_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_job_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_job_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_job_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_job_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobcondition_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobcondition_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobcondition_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobcondition_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_joblist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_joblist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_joblist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_joblist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_jobstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_label.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_labelselector_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_labelselector_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_labelselectorrequirement_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_labelselectorrequirement_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_lifecycle_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_lifecycle_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrange_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrange_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangeitem_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangeitem_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_limitrangespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_listmeta_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_listmeta_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_loadbalanceringress_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_loadbalanceringress_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_loadbalancerstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_loadbalancerstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_localobjectreference_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_localobjectreference_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_localsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_logs.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespace_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespace_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacestatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_namespacestatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicy_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicy_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyingressrule_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicylist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicylist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicypeer_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicypeer_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyport_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyport_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_networkpolicyspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_node_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_node_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodeaddress_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodeaddress_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodecondition_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodecondition_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodedaemonendpoints_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodedaemonendpoints_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodestatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodestatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodesysteminfo_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nodesysteminfo_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nonresourceattributes_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_nonresourceattributes_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectfieldselector_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectfieldselector_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectmeta_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectmeta_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectreference_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_objectreference_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_options.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ownerreference_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_ownerreference_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_patch.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_patch_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_patch_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolume_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolume_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaim_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaim_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumeclaimstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumestatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_persistentvolumestatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_pod_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podcondition_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podcondition_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudget_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudget_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_poddisruptionbudgetstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podsecuritycontext_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podsecuritycontext_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplate_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplate_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplatelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplatelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplatespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_podtemplatespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_policyrule_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_policyrule_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_port-forward.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_preconditions_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_preconditions_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_probe_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_probe_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_proxy.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_quantity_resource_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_quantity_resource_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rawextension_runtime_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rawextension_runtime_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replace.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicaset_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicaset_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetcondition_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetcondition_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicasetstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontroller_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontroller_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollercondition_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollercondition_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerstatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_replicationcontrollerstatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourceattributes_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourceattributes_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcefieldselector_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcefieldselector_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequota_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequota_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotalist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotalist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotaspec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotaspec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotastatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcequotastatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcerequirements_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_resourcerequirements_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_role_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_role_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolebinding_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolebinding_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolebindinglist_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolebindinglist_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolelist_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolelist_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_roleref_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_roleref_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rollbackconfig_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rollbackconfig_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rolling-update.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rollingupdatedeployment_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_rollout.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_run.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scale.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scale_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scale_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scale_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scale_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalespec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalespec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalestatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalestatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalestatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_scalestatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secret_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secret_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secretkeyselector_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secretkeyselector_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secretlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_secretlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_securitycontext_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_securitycontext_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selfsubjectaccessreview_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selfsubjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selinuxoptions_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_selinuxoptions_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serveraddressbyclientcidr_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_service_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_service_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceaccount_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceaccount_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceaccountlist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceaccountlist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicelist_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicelist_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceport_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_serviceport_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicespec_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicespec_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicestatus_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_servicestatus_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_set.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulset_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulset_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetlist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetlist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statefulsetstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_status_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_status_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statuscause_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statuscause_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statusdetails_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_statusdetails_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_stop.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_storageclass_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_storageclass_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_storageclasslist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_storageclasslist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subject_v1alpha1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subject_v1alpha1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreview_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreview_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreviewspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subjectaccessreviewstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subresourcereference_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_subresourcereference_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_taint.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tcpsocketaction_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tcpsocketaction_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_thirdpartyresource_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_thirdpartyresource_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_thirdpartyresourcelist_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_time_unversioned_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_time_unversioned_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreview_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreview_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreviewspec_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreviewspec_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreviewstatus_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_tokenreviewstatus_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_top.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_uncordon.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_userinfo_v1beta1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_userinfo_v1beta1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_version.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_volume_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_volume_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_volumemount_v1_concept.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_generated_volumemount_v1_definition.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_getting_started.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_meta.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_oldversions.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_overview.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_servicediscovery.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_working_with_apps.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/_workloads.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/deployment-original.md delete mode 100644 docs/user-guide/kubectl/v1.5/documents/deployment.md delete mode 100644 docs/user-guide/kubectl/v1.5/manifest.json delete mode 100755 docs/user-guide/kubectl/v1.5/runbrodocs.sh diff --git a/docs/api-reference/v1.5/documents/_cluster.md b/docs/api-reference/v1.5/documents/_cluster.md deleted file mode 100644 index 5c74168efb..0000000000 --- a/docs/api-reference/v1.5/documents/_cluster.md +++ /dev/null @@ -1,5 +0,0 @@ -# CLUSTER - -Cluster resources are responsible for defining configuration of the cluster itself, and are generally only used by cluster operators. - ------------- diff --git a/docs/api-reference/v1.5/documents/_config.md b/docs/api-reference/v1.5/documents/_config.md deleted file mode 100644 index 555578e2b3..0000000000 --- a/docs/api-reference/v1.5/documents/_config.md +++ /dev/null @@ -1,11 +0,0 @@ -# CONFIG & STORAGE - -Config and Storage resources are responsible for injecting data into your applications and persisting data externally to your container. - -Common resource types: - -- [ConfigMaps](#configmap-v1) for providing text key value pairs injected into the application through environment variables, command line arguments, or files -- [Secrets](#secret-v1) for providing binary data injected into the application through files -- [Volumes](#volume-v1) 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. - ------------- diff --git a/docs/api-reference/v1.5/documents/_definitions.md b/docs/api-reference/v1.5/documents/_definitions.md deleted file mode 100644 index 337695b8d5..0000000000 --- a/docs/api-reference/v1.5/documents/_definitions.md +++ /dev/null @@ -1,3 +0,0 @@ -# DEFINITIONS - -This section contains definitions for objects used in the Kubernetes APIs. diff --git a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md deleted file mode 100644 index d4732c1cea..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_concept.md +++ /dev/null @@ -1,46 +0,0 @@ - - ------------ -# APIGroup unversioned - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIGroup - - - - - - - -APIGroup contains the name, the supported versions, and the preferred version of a group. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -name
    *string* | name is the name of the group. -preferredVersion
    *[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. -serverAddressByClientCIDRs
    *[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. -versions
    *[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned) array* | versions are the versions supported in this group. - - -### APIGroupList unversioned - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groups
    *[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md deleted file mode 100644 index d6d1173eb5..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apigroup_unversioned_definition.md +++ /dev/null @@ -1,22 +0,0 @@ -## APIGroup unversioned - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIGroup - - - -APIGroup contains the name, the supported versions, and the preferred version of a group. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -name
    *string* | name is the name of the group. -preferredVersion
    *[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned)* | preferredVersion is the version preferred by the API server, which probably is the storage version. -serverAddressByClientCIDRs
    *[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. -versions
    *[GroupVersionForDiscovery](#groupversionfordiscovery-unversioned) array* | versions are the versions supported in this group. - diff --git a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md deleted file mode 100644 index 99c9d0d8fe..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# APIGroupList unversioned - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIGroupList - - - - - - - -APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groups
    *[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md deleted file mode 100644 index 6267bf8f48..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apigrouplist_unversioned_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## APIGroupList unversioned - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIGroupList - - - -APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groups
    *[APIGroup](#apigroup-unversioned) array* | groups is a list of APIGroup. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - diff --git a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md deleted file mode 100644 index 2f87ebff79..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_concept.md +++ /dev/null @@ -1,44 +0,0 @@ - - ------------ -# APIResource unversioned - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIResource - - - - - - - -APIResource specifies the name of a resource and whether it is namespaced. - - - -Field | Description ------------- | ----------- -kind
    *string* | kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo') -name
    *string* | name is the name of the resource. -namespaced
    *boolean* | namespaced indicates if a resource is namespaced or not. - - -### APIResourceList unversioned - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groupVersion
    *string* | groupVersion is the group and version this APIResourceList is for. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -resources
    *[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_definition.md deleted file mode 100644 index dd9cd0a727..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiresource_unversioned_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## APIResource unversioned - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIResource - - - -APIResource specifies the name of a resource and whether it is namespaced. - - - -Field | Description ------------- | ----------- -kind
    *string* | kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo') -name
    *string* | name is the name of the resource. -namespaced
    *boolean* | namespaced indicates if a resource is namespaced or not. - diff --git a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md deleted file mode 100644 index 5bb170d54c..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# APIResourceList unversioned - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIResourceList - - - - - - - -APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groupVersion
    *string* | groupVersion is the group and version this APIResourceList is for. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -resources
    *[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md deleted file mode 100644 index b5b7649e2f..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiresourcelist_unversioned_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## APIResourceList unversioned - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIResourceList - - - -APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -groupVersion
    *string* | groupVersion is the group and version this APIResourceList is for. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -resources
    *[APIResource](#apiresource-unversioned) array* | resources contains the name of the resources and if they are namespaced. - diff --git a/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_concept.md deleted file mode 100644 index eed2e554dc..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_concept.md +++ /dev/null @@ -1,31 +0,0 @@ - - ------------ -# APIVersion v1beta1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1beta1 | APIVersion - - - - - - - -An APIVersion represents a single concrete version of an object model. - - - -Field | Description ------------- | ----------- -name
    *string* | Name of this version (e.g. 'v1'). - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_definition.md deleted file mode 100644 index aecfdceaf7..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiversion_v1beta1_definition.md +++ /dev/null @@ -1,17 +0,0 @@ -## APIVersion v1beta1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1beta1 | APIVersion - - - -An APIVersion represents a single concrete version of an object model. - - - -Field | Description ------------- | ----------- -name
    *string* | Name of this version (e.g. 'v1'). - diff --git a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md deleted file mode 100644 index 31aa6a658a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# APIVersions unversioned - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIVersions - - - - - - - -APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -serverAddressByClientCIDRs
    *[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. -versions
    *string array* | versions are the api versions that are available. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md b/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md deleted file mode 100644 index 3513f89da7..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_apiversions_unversioned_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## APIVersions unversioned - -Group | Version | Kind ------------- | ---------- | ----------- -Core | unversioned | APIVersions - - - -APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -serverAddressByClientCIDRs
    *[ServerAddressByClientCIDR](#serveraddressbyclientcidr-unversioned) array* | 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. -versions
    *string array* | versions are the api versions that are available. - diff --git a/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_concept.md deleted file mode 100644 index 7ec6b04185..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# AttachedVolume v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AttachedVolume - - - - - - - -AttachedVolume describes a volume attached to a node - - - -Field | Description ------------- | ----------- -devicePath
    *string* | DevicePath represents the device path where the volume should be available -name
    *string* | Name of the attached volume - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_definition.md deleted file mode 100644 index ae5004c11a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_attachedvolume_v1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## AttachedVolume v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AttachedVolume - - - -AttachedVolume describes a volume attached to a node - - - -Field | Description ------------- | ----------- -devicePath
    *string* | DevicePath represents the device path where the volume should be available -name
    *string* | Name of the attached volume - diff --git a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md deleted file mode 100644 index 9dda8fcf2a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_concept.md +++ /dev/null @@ -1,36 +0,0 @@ - - ------------ -# AWSElasticBlockStoreVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AWSElasticBlockStoreVolumeSource - - - - - - - -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. - - - -Field | Description ------------- | ----------- -fsType
    *string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore -partition
    *integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). -readOnly
    *boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore -volumeID
    *string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md deleted file mode 100644 index 3c4d7e2d21..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_awselasticblockstorevolumesource_v1_definition.md +++ /dev/null @@ -1,22 +0,0 @@ -## AWSElasticBlockStoreVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AWSElasticBlockStoreVolumeSource - - - -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. - - - -Field | Description ------------- | ----------- -fsType
    *string* | Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore -partition
    *integer* | The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). -readOnly
    *boolean* | Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore -volumeID
    *string* | Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore - diff --git a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md deleted file mode 100644 index 1043b9d9ae..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_concept.md +++ /dev/null @@ -1,35 +0,0 @@ - - ------------ -# AzureDiskVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AzureDiskVolumeSource - - - - - - - -AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. - - - -Field | Description ------------- | ----------- -cachingMode
    *string* | Host Caching mode: None, Read Only, Read Write. -diskName
    *string* | The Name of the data disk in the blob storage -diskURI
    *string* | The URI the data disk in the blob storage -fsType
    *string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. -readOnly
    *boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md deleted file mode 100644 index 191a407952..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_azurediskvolumesource_v1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## AzureDiskVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AzureDiskVolumeSource - - - -AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. - - - -Field | Description ------------- | ----------- -cachingMode
    *string* | Host Caching mode: None, Read Only, Read Write. -diskName
    *string* | The Name of the data disk in the blob storage -diskURI
    *string* | The URI the data disk in the blob storage -fsType
    *string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. -readOnly
    *boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - diff --git a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md deleted file mode 100644 index a9dc6186b1..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# AzureFileVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AzureFileVolumeSource - - - - - - - -AzureFile represents an Azure File Service mount on the host and bind mount to the pod. - - - -Field | Description ------------- | ----------- -readOnly
    *boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. -secretName
    *string* | the name of secret that contains Azure Storage Account Name and Key -shareName
    *string* | Share Name - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md deleted file mode 100644 index 2382e73e4c..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_azurefilevolumesource_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## AzureFileVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | AzureFileVolumeSource - - - -AzureFile represents an Azure File Service mount on the host and bind mount to the pod. - - - -Field | Description ------------- | ----------- -readOnly
    *boolean* | Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. -secretName
    *string* | the name of secret that contains Azure Storage Account Name and Key -shareName
    *string* | Share Name - diff --git a/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md deleted file mode 100644 index 6c7d6bf32a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_binding_v1_concept.md +++ /dev/null @@ -1,104 +0,0 @@ - - ------------ -# Binding v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Binding - - - - - - - -Binding ties one object to another. For example, a pod is bound to a node by a scheduler. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -target
    *[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. - - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a Binding - -### HTTP Request - -`POST /api/v1/namespaces/{namespace}/bindings` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Binding](#binding-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Binding](#binding-v1)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md deleted file mode 100644 index 32e2a31908..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_binding_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## Binding v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Binding - - - -Binding ties one object to another. For example, a pod is bound to a node by a scheduler. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -target
    *[ObjectReference](#objectreference-v1)* | The target object that you want to bind to the standard object. - diff --git a/docs/api-reference/v1.5/documents/_generated_capabilities_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_capabilities_v1_concept.md deleted file mode 100644 index 6c47def7ef..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_capabilities_v1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# Capabilities v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Capabilities - - - - - - - -Adds and removes POSIX capabilities from running containers. - - - -Field | Description ------------- | ----------- -add
    *string array* | Added capabilities -drop
    *string array* | Removed capabilities - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_capabilities_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_capabilities_v1_definition.md deleted file mode 100644 index c18460bf9a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_capabilities_v1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## Capabilities v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Capabilities - - - -Adds and removes POSIX capabilities from running containers. - - - -Field | Description ------------- | ----------- -add
    *string array* | Added capabilities -drop
    *string array* | Removed capabilities - diff --git a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md deleted file mode 100644 index 1911dac73b..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_concept.md +++ /dev/null @@ -1,36 +0,0 @@ - - ------------ -# CephFSVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CephFSVolumeSource - - - - - - - -Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. - - - -Field | Description ------------- | ----------- -monitors
    *string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -path
    *string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / -readOnly
    *boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -secretFile
    *string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -secretRef
    *[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -user
    *string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md deleted file mode 100644 index d672f53c08..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cephfsvolumesource_v1_definition.md +++ /dev/null @@ -1,22 +0,0 @@ -## CephFSVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CephFSVolumeSource - - - -Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. - - - -Field | Description ------------- | ----------- -monitors
    *string array* | Required: Monitors is a collection of Ceph monitors More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -path
    *string* | Optional: Used as the mounted root, rather than the full Ceph tree, default is / -readOnly
    *boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -secretFile
    *string* | Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -secretRef
    *[LocalObjectReference](#localobjectreference-v1)* | Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it -user
    *string* | Optional: User is the rados user name, default is admin More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md deleted file mode 100644 index 3906344d6e..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_concept.md +++ /dev/null @@ -1,590 +0,0 @@ - - ------------ -# CertificateSigningRequest v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequest - - - - - - - -Describes a certificate signing request - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | -spec
    *[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. -status
    *[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. - - -### CertificateSigningRequestSpec v1alpha1 - - - -Field | Description ------------- | ----------- -groups
    *string array* | -request
    *string* | Base64-encoded PKCS#10 CSR data -uid
    *string* | -username
    *string* | Information about the requesting user (if relevant) See user.Info interface for details - -### CertificateSigningRequestStatus v1alpha1 - - - -Field | Description ------------- | ----------- -certificate
    *string* | If request was approved, the controller will place the issued certificate here. -conditions
    *[CertificateSigningRequestCondition](#certificatesigningrequestcondition-v1alpha1) array* | Conditions applied to the request, such as approval or denial. - -### CertificateSigningRequestList v1alpha1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a CertificateSigningRequest - -### HTTP Request - -`POST /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK - - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace the specified CertificateSigningRequest - -### HTTP Request - -`PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update the specified CertificateSigningRequest - -### HTTP Request - -`PATCH /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK - - -## Delete - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete a CertificateSigningRequest - -### HTTP Request - -`DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[DeleteOptions](#deleteoptions-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - -## Delete Collection - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete collection of CertificateSigningRequest - -### HTTP Request - -`DELETE /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified CertificateSigningRequest - -### HTTP Request - -`GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' -export | Should this value be exported. Export strips fields that a user can not specify. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind CertificateSigningRequest - -### HTTP Request - -`GET /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequestList](#certificatesigningrequestlist-v1alpha1)* | OK - - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch changes to an object of kind CertificateSigningRequest - -### HTTP Request - -`GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md deleted file mode 100644 index 273683ba2f..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequest_v1alpha1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## CertificateSigningRequest v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequest - - - -Describes a certificate signing request - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | -spec
    *[CertificateSigningRequestSpec](#certificatesigningrequestspec-v1alpha1)* | The certificate request itself and any additional information. -status
    *[CertificateSigningRequestStatus](#certificatesigningrequeststatus-v1alpha1)* | Derived information about the request. - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md deleted file mode 100644 index b11023903e..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_concept.md +++ /dev/null @@ -1,34 +0,0 @@ - - ------------ -# CertificateSigningRequestCondition v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | CertificateSigningRequestCondition - - - - - - - - - - - -Field | Description ------------- | ----------- -lastUpdateTime
    *[Time](#time-unversioned)* | timestamp for the last update to this condition -message
    *string* | human readable message with details about the request state -reason
    *string* | brief reason for the request state -type
    *string* | request approval state, currently Approved or Denied. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md deleted file mode 100644 index 4d6c34b60b..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestcondition_v1alpha1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## CertificateSigningRequestCondition v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | CertificateSigningRequestCondition - - - - - - - -Field | Description ------------- | ----------- -lastUpdateTime
    *[Time](#time-unversioned)* | timestamp for the last update to this condition -message
    *string* | human readable message with details about the request state -reason
    *string* | brief reason for the request state -type
    *string* | request approval state, currently Approved or Denied. - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md deleted file mode 100644 index 0fadb04d10..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_concept.md +++ /dev/null @@ -1,99 +0,0 @@ - - ------------ -# CertificateSigningRequestList v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequestList - - - - - - - - - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | - - - - - -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of CertificateSigningRequest - -### HTTP Request - -`GET /apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md deleted file mode 100644 index d97323b2c8..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestlist_v1alpha1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## CertificateSigningRequestList v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequestList - - - - - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1) array* | -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md deleted file mode 100644 index 9e7fbae674..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_concept.md +++ /dev/null @@ -1,34 +0,0 @@ - - ------------ -# CertificateSigningRequestSpec v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | CertificateSigningRequestSpec - - - - - - - -This information is immutable after the request is created. Only the Request and ExtraInfo fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users. - - - -Field | Description ------------- | ----------- -groups
    *string array* | -request
    *string* | Base64-encoded PKCS#10 CSR data -uid
    *string* | -username
    *string* | Information about the requesting user (if relevant) See user.Info interface for details - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md deleted file mode 100644 index e335d818d6..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequestspec_v1alpha1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## CertificateSigningRequestSpec v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | CertificateSigningRequestSpec - - - -This information is immutable after the request is created. Only the Request and ExtraInfo fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users. - - - -Field | Description ------------- | ----------- -groups
    *string array* | -request
    *string* | Base64-encoded PKCS#10 CSR data -uid
    *string* | -username
    *string* | Information about the requesting user (if relevant) See user.Info interface for details - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md deleted file mode 100644 index e69876a567..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_concept.md +++ /dev/null @@ -1,103 +0,0 @@ - - ------------ -# CertificateSigningRequestStatus v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequestStatus - - - - - - - - - - - -Field | Description ------------- | ----------- -certificate
    *string* | If request was approved, the controller will place the issued certificate here. -conditions
    *[CertificateSigningRequestCondition](#certificatesigningrequestcondition-v1alpha1) array* | Conditions applied to the request, such as approval or denial. - - - - - -## Write Operations - -See supported operations below... - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified CertificateSigningRequest - -### HTTP Request - -`PUT /apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CertificateSigningRequest - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CertificateSigningRequest](#certificatesigningrequest-v1alpha1)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md deleted file mode 100644 index 55a929b145..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_certificatesigningrequeststatus_v1alpha1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## CertificateSigningRequestStatus v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Certificates | v1alpha1 | CertificateSigningRequestStatus - - - - - - - -Field | Description ------------- | ----------- -certificate
    *string* | If request was approved, the controller will place the issued certificate here. -conditions
    *[CertificateSigningRequestCondition](#certificatesigningrequestcondition-v1alpha1) array* | Conditions applied to the request, such as approval or denial. - diff --git a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md deleted file mode 100644 index d31493f61a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# CinderVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CinderVolumeSource - - - - - - - -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. - - - -Field | Description ------------- | ----------- -fsType
    *string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md -readOnly
    *boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md -volumeID
    *string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md deleted file mode 100644 index 670fb61930..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cindervolumesource_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## CinderVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CinderVolumeSource - - - -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. - - - -Field | Description ------------- | ----------- -fsType
    *string* | Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md -readOnly
    *boolean* | Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md -volumeID
    *string* | volume id used to identify the volume in cinder More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md deleted file mode 100644 index 0691f97e14..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_concept.md +++ /dev/null @@ -1,565 +0,0 @@ - - ------------ -# ClusterRole v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRole - - - - - - - -ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. -rules
    *[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole - - -### ClusterRoleList v1alpha1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a ClusterRole - -### HTTP Request - -`POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ClusterRole](#clusterrole-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRole](#clusterrole-v1alpha1)* | OK - - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace the specified ClusterRole - -### HTTP Request - -`PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRole - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ClusterRole](#clusterrole-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRole](#clusterrole-v1alpha1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update the specified ClusterRole - -### HTTP Request - -`PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRole - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRole](#clusterrole-v1alpha1)* | OK - - -## Delete - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete a ClusterRole - -### HTTP Request - -`DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRole - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[DeleteOptions](#deleteoptions-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - -## Delete Collection - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete collection of ClusterRole - -### HTTP Request - -`DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified ClusterRole - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRole - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRole](#clusterrole-v1alpha1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind ClusterRole - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterroles` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleList](#clusterrolelist-v1alpha1)* | OK - - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch changes to an object of kind ClusterRole - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRole - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md deleted file mode 100644 index c36ca7eb77..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrole_v1alpha1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## ClusterRole v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRole - - - -ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. -rules
    *[PolicyRule](#policyrule-v1alpha1) array* | Rules holds all the PolicyRules for this ClusterRole - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md deleted file mode 100644 index 9d249c7387..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_concept.md +++ /dev/null @@ -1,627 +0,0 @@ - - ------------ -# ClusterRoleBinding v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleBinding - - - - - - - -ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. -roleRef
    *[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. -subjects
    *[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. - - -### ClusterRoleBindingList v1alpha1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a ClusterRoleBinding - -### HTTP Request - -`POST /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | OK - - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace the specified ClusterRoleBinding - -### HTTP Request - -`PUT /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRoleBinding - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update the specified ClusterRoleBinding - -### HTTP Request - -`PATCH /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRoleBinding - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | OK - - -## Delete - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete a ClusterRoleBinding - -### HTTP Request - -`DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRoleBinding - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[DeleteOptions](#deleteoptions-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - -## Delete Collection - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete collection of ClusterRoleBinding - -### HTTP Request - -`DELETE /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified ClusterRoleBinding - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRoleBinding - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind ClusterRoleBinding - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ClusterRoleBindingList](#clusterrolebindinglist-v1alpha1)* | OK - - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch changes to an object of kind ClusterRoleBinding - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ClusterRoleBinding - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ClusterRoleBinding - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md deleted file mode 100644 index ca190657a5..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebinding_v1alpha1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## ClusterRoleBinding v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleBinding - - - -ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. -roleRef
    *[RoleRef](#roleref-v1alpha1)* | RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. -subjects
    *[Subject](#subject-v1alpha1) array* | Subjects holds references to the objects the role applies to. - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md deleted file mode 100644 index a43a158ede..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# ClusterRoleBindingList v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | ClusterRoleBindingList - - - - - - - -ClusterRoleBindingList is a collection of ClusterRoleBindings - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md deleted file mode 100644 index d2c0dbcf80..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolebindinglist_v1alpha1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## ClusterRoleBindingList v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1alpha1 | ClusterRoleBindingList - - - -ClusterRoleBindingList is a collection of ClusterRoleBindings - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRoleBinding](#clusterrolebinding-v1alpha1) array* | Items is a list of ClusterRoleBindings -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md deleted file mode 100644 index bba333ae62..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_concept.md +++ /dev/null @@ -1,99 +0,0 @@ - - ------------ -# ClusterRoleList v1alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleList - - - - - - - -ClusterRoleList is a collection of ClusterRoles - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - - - - - -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ClusterRole - -### HTTP Request - -`GET /apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md deleted file mode 100644 index 416a354cab..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_clusterrolelist_v1alpha1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## ClusterRoleList v1alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -RbacAuthorization | v1alpha1 | ClusterRoleList - - - -ClusterRoleList is a collection of ClusterRoles - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ClusterRole](#clusterrole-v1alpha1) array* | Items is a list of ClusterRoles -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard object's metadata. - diff --git a/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_concept.md deleted file mode 100644 index 7976a2bc40..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_concept.md +++ /dev/null @@ -1,34 +0,0 @@ - - ------------ -# ComponentCondition v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentCondition - - - - - - - -Information about the condition of a component. - - - -Field | Description ------------- | ----------- -error
    *string* | Condition error code for a component. For example, a health check error code. -message
    *string* | Message about the condition for a component. For example, information about a health check. -status
    *string* | Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". -type
    *string* | Type of condition for a component. Valid value: "Healthy" - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_definition.md deleted file mode 100644 index 6462a60913..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentcondition_v1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## ComponentCondition v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentCondition - - - -Information about the condition of a component. - - - -Field | Description ------------- | ----------- -error
    *string* | Condition error code for a component. For example, a health check error code. -message
    *string* | Message about the condition for a component. For example, information about a health check. -status
    *string* | Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". -type
    *string* | Type of condition for a component. Valid value: "Healthy" - diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md deleted file mode 100644 index 7952df3b88..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_concept.md +++ /dev/null @@ -1,172 +0,0 @@ - - ------------ -# ComponentStatus v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentStatus - - - - - - - -ComponentStatus (and ComponentStatusList) holds the cluster validation info. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -conditions
    *[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - -### ComponentStatusList v1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified ComponentStatus - -### HTTP Request - -`GET /api/v1/componentstatuses/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ComponentStatus - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ComponentStatus](#componentstatus-v1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list objects of kind ComponentStatus - -### HTTP Request - -`GET /api/v1/componentstatuses` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ComponentStatusList](#componentstatuslist-v1)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md deleted file mode 100644 index efbd73394a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentstatus_v1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## ComponentStatus v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentStatus - - - -ComponentStatus (and ComponentStatusList) holds the cluster validation info. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -conditions
    *[ComponentCondition](#componentcondition-v1) array* | List of component conditions observed -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md deleted file mode 100644 index b4445da385..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# ComponentStatusList v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentStatusList - - - - - - - -Status of all the conditions for the component as a list of ComponentStatus objects. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md deleted file mode 100644 index 02c154761e..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_componentstatuslist_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## ComponentStatusList v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ComponentStatusList - - - -Status of all the conditions for the component as a list of ComponentStatus objects. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ComponentStatus](#componentstatus-v1) array* | List of ComponentStatus objects. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - diff --git a/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md deleted file mode 100644 index 3ef2d92fbf..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmap_v1_concept.md +++ /dev/null @@ -1,709 +0,0 @@ - - ------------ -# ConfigMap v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMap - - - - - - - -ConfigMap holds configuration data for pods to consume. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -data
    *object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - -### ConfigMapList v1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a ConfigMap - -### HTTP Request - -`POST /api/v1/namespaces/{namespace}/configmaps` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ConfigMap](#configmap-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMap](#configmap-v1)* | OK - - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace the specified ConfigMap - -### HTTP Request - -`PUT /api/v1/namespaces/{namespace}/configmaps/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ConfigMap -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[ConfigMap](#configmap-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMap](#configmap-v1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update the specified ConfigMap - -### HTTP Request - -`PATCH /api/v1/namespaces/{namespace}/configmaps/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ConfigMap -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMap](#configmap-v1)* | OK - - -## Delete - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete a ConfigMap - -### HTTP Request - -`DELETE /api/v1/namespaces/{namespace}/configmaps/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ConfigMap -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[DeleteOptions](#deleteoptions-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - -## Delete Collection - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete collection of ConfigMap - -### HTTP Request - -`DELETE /api/v1/namespaces/{namespace}/configmaps` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified ConfigMap - -### HTTP Request - -`GET /api/v1/namespaces/{namespace}/configmaps/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ConfigMap -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' -export | Should this value be exported. Export strips fields that a user can not specify. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMap](#configmap-v1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind ConfigMap - -### HTTP Request - -`GET /api/v1/namespaces/{namespace}/configmaps` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMapList](#configmaplist-v1)* | OK - - -## List All Namespaces - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind ConfigMap - -### HTTP Request - -`GET /api/v1/configmaps` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[ConfigMapList](#configmaplist-v1)* | OK - - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch changes to an object of kind ConfigMap - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/configmaps/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the ConfigMap -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - -## Watch List All Namespaces - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ConfigMap - -### HTTP Request - -`GET /api/v1/watch/configmaps` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md deleted file mode 100644 index b5864ad664..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmap_v1_definition.md +++ /dev/null @@ -1,20 +0,0 @@ -## ConfigMap v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMap - - - -ConfigMap holds configuration data for pods to consume. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -data
    *object* | Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - diff --git a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md deleted file mode 100644 index 8cb9c40d2d..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# ConfigMapKeySelector v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapKeySelector - - - - - - - -Selects a key from a ConfigMap. - - - -Field | Description ------------- | ----------- -key
    *string* | The key to select. -name
    *string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md deleted file mode 100644 index 00e98b82bb..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmapkeyselector_v1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## ConfigMapKeySelector v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapKeySelector - - - -Selects a key from a ConfigMap. - - - -Field | Description ------------- | ----------- -key
    *string* | The key to select. -name
    *string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names - diff --git a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md deleted file mode 100644 index 337e57078d..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_concept.md +++ /dev/null @@ -1,104 +0,0 @@ - - ------------ -# ConfigMapList v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapList - - - - - - - -ConfigMapList is a resource containing a list of ConfigMap objects. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - - - - -## Read Operations - -See supported operations below... - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of ConfigMap - -### HTTP Request - -`GET /api/v1/watch/namespaces/{namespace}/configmaps` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md deleted file mode 100644 index 32e00ed55e..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmaplist_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## ConfigMapList v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapList - - - -ConfigMapList is a resource containing a list of ConfigMap objects. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[ConfigMap](#configmap-v1) array* | Items is the list of ConfigMaps. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - diff --git a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md deleted file mode 100644 index 5dd5e2b183..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_concept.md +++ /dev/null @@ -1,35 +0,0 @@ - - ------------ -# ConfigMapVolumeSource v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapVolumeSource - - - - - - - -Adapts a ConfigMap into a volume. - -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. - - - -Field | Description ------------- | ----------- -defaultMode
    *integer* | 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. -items
    *[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. -name
    *string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md deleted file mode 100644 index e171a6f0d6..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_configmapvolumesource_v1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## ConfigMapVolumeSource v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ConfigMapVolumeSource - - - -Adapts a ConfigMap into a volume. - -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. - - - -Field | Description ------------- | ----------- -defaultMode
    *integer* | 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. -items
    *[KeyToPath](#keytopath-v1) array* | 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. Paths must be relative and may not contain the '..' path or start with '..'. -name
    *string* | Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names - diff --git a/docs/api-reference/v1.5/documents/_generated_container_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_container_v1_concept.md deleted file mode 100644 index 8c33d2c477..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_container_v1_concept.md +++ /dev/null @@ -1,84 +0,0 @@ - - ------------ -# Container v1 - ->bdocs-tab:kubectl Container Config to run nginx (must be embedded in a PodSpec to run). - -```bdocs-tab:kubectl_yaml - -name: nginx -# Run the nginx:1.10 image -image: nginx:1.10 - - -``` ->bdocs-tab:curl Container Config to run nginx (must be embedded in a PodSpec to run). - -```bdocs-tab:curl_yaml - -name: nginx -# Run the nginx:1.10 image -image: nginx:1.10 - - -``` - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Container - - - - - - - -A single application container that you want to run within a pod. - - - -Field | Description ------------- | ----------- -args
    *string array* | Arguments to the entrypoint. The docker image's CMD 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 -command
    *string array* | 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 -env
    *[EnvVar](#envvar-v1) array* | List of environment variables to set in the container. Cannot be updated. -image
    *string* | Docker image name. More info: http://kubernetes.io/docs/user-guide/images -imagePullPolicy
    *string* | Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/images#updating-images -lifecycle
    *[Lifecycle](#lifecycle-v1)* | Actions that the management system should take in response to container lifecycle events. Cannot be updated. -livenessProbe
    *[Probe](#probe-v1)* | Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes -name
    *string* | Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. -ports
    *[ContainerPort](#containerport-v1) array* | 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. -readinessProbe
    *[Probe](#probe-v1)* | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes -resources
    *[ResourceRequirements](#resourcerequirements-v1)* | Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources -securityContext
    *[SecurityContext](#securitycontext-v1)* | Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md -stdin
    *boolean* | Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. -stdinOnce
    *boolean* | Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false -terminationMessagePath
    *string* | Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Defaults to /dev/termination-log. Cannot be updated. -tty
    *boolean* | Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. -volumeMounts
    *[VolumeMount](#volumemount-v1) array* | Pod volumes to mount into the container's filesystem. Cannot be updated. -workingDir
    *string* | Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - - -### ContainerStatus v1 - - - -Field | Description ------------- | ----------- -containerID
    *string* | Container's ID in the format 'docker://'. More info: http://kubernetes.io/docs/user-guide/container-environment#container-information -image
    *string* | The image the container is running. More info: http://kubernetes.io/docs/user-guide/images -imageID
    *string* | ImageID of the container's image. -lastState
    *[ContainerState](#containerstate-v1)* | Details about the container's last termination condition. -name
    *string* | This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated. -ready
    *boolean* | Specifies whether the container has passed its readiness probe. -restartCount
    *integer* | 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. -state
    *[ContainerState](#containerstate-v1)* | Details about the container's current condition. - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_container_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_container_v1_definition.md deleted file mode 100644 index a1cd1458e6..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_container_v1_definition.md +++ /dev/null @@ -1,34 +0,0 @@ -## Container v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | Container - - - -A single application container that you want to run within a pod. - - - -Field | Description ------------- | ----------- -args
    *string array* | Arguments to the entrypoint. The docker image's CMD 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 -command
    *string array* | 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 -env
    *[EnvVar](#envvar-v1) array* | List of environment variables to set in the container. Cannot be updated. -image
    *string* | Docker image name. More info: http://kubernetes.io/docs/user-guide/images -imagePullPolicy
    *string* | Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/images#updating-images -lifecycle
    *[Lifecycle](#lifecycle-v1)* | Actions that the management system should take in response to container lifecycle events. Cannot be updated. -livenessProbe
    *[Probe](#probe-v1)* | Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes -name
    *string* | Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. -ports
    *[ContainerPort](#containerport-v1) array* | 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. -readinessProbe
    *[Probe](#probe-v1)* | Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes -resources
    *[ResourceRequirements](#resourcerequirements-v1)* | Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources -securityContext
    *[SecurityContext](#securitycontext-v1)* | Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md -stdin
    *boolean* | Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. -stdinOnce
    *boolean* | Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false -terminationMessagePath
    *string* | Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Defaults to /dev/termination-log. Cannot be updated. -tty
    *boolean* | Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. -volumeMounts
    *[VolumeMount](#volumemount-v1) array* | Pod volumes to mount into the container's filesystem. Cannot be updated. -workingDir
    *string* | Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - diff --git a/docs/api-reference/v1.5/documents/_generated_containerimage_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerimage_v1_concept.md deleted file mode 100644 index ca498c5d33..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerimage_v1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# ContainerImage v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerImage - - - - - - - -Describe a container image - - - -Field | Description ------------- | ----------- -names
    *string array* | Names by which this image is known. e.g. ["gcr.io/google_containers/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"] -sizeBytes
    *integer* | The size of the image in bytes. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerimage_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerimage_v1_definition.md deleted file mode 100644 index eee5bc1ffa..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerimage_v1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## ContainerImage v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerImage - - - -Describe a container image - - - -Field | Description ------------- | ----------- -names
    *string array* | Names by which this image is known. e.g. ["gcr.io/google_containers/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"] -sizeBytes
    *integer* | The size of the image in bytes. - diff --git a/docs/api-reference/v1.5/documents/_generated_containerport_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerport_v1_concept.md deleted file mode 100644 index 3c003e33d8..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerport_v1_concept.md +++ /dev/null @@ -1,35 +0,0 @@ - - ------------ -# ContainerPort v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerPort - - - - - - - -ContainerPort represents a network port in a single container. - - - -Field | Description ------------- | ----------- -containerPort
    *integer* | Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. -hostIP
    *string* | What host IP to bind the external port to. -hostPort
    *integer* | Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. -name
    *string* | If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. -protocol
    *string* | Protocol for port. Must be UDP or TCP. Defaults to "TCP". - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerport_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerport_v1_definition.md deleted file mode 100644 index 1389ec92a8..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerport_v1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## ContainerPort v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerPort - - - -ContainerPort represents a network port in a single container. - - - -Field | Description ------------- | ----------- -containerPort
    *integer* | Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. -hostIP
    *string* | What host IP to bind the external port to. -hostPort
    *integer* | Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. -name
    *string* | If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. -protocol
    *string* | Protocol for port. Must be UDP or TCP. Defaults to "TCP". - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstate_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerstate_v1_concept.md deleted file mode 100644 index a0958ebb25..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstate_v1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# ContainerState v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerState - - - - - - - -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. - - - -Field | Description ------------- | ----------- -running
    *[ContainerStateRunning](#containerstaterunning-v1)* | Details about a running container -terminated
    *[ContainerStateTerminated](#containerstateterminated-v1)* | Details about a terminated container -waiting
    *[ContainerStateWaiting](#containerstatewaiting-v1)* | Details about a waiting container - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstate_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerstate_v1_definition.md deleted file mode 100644 index 624e3666b5..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstate_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## ContainerState v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerState - - - -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. - - - -Field | Description ------------- | ----------- -running
    *[ContainerStateRunning](#containerstaterunning-v1)* | Details about a running container -terminated
    *[ContainerStateTerminated](#containerstateterminated-v1)* | Details about a terminated container -waiting
    *[ContainerStateWaiting](#containerstatewaiting-v1)* | Details about a waiting container - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_concept.md deleted file mode 100644 index 1714dac45b..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_concept.md +++ /dev/null @@ -1,31 +0,0 @@ - - ------------ -# ContainerStateRunning v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateRunning - - - - - - - -ContainerStateRunning is a running state of a container. - - - -Field | Description ------------- | ----------- -startedAt
    *[Time](#time-unversioned)* | Time at which the container was last (re-)started - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_definition.md deleted file mode 100644 index 6080af649c..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstaterunning_v1_definition.md +++ /dev/null @@ -1,17 +0,0 @@ -## ContainerStateRunning v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateRunning - - - -ContainerStateRunning is a running state of a container. - - - -Field | Description ------------- | ----------- -startedAt
    *[Time](#time-unversioned)* | Time at which the container was last (re-)started - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_concept.md deleted file mode 100644 index e76ba6af4a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_concept.md +++ /dev/null @@ -1,37 +0,0 @@ - - ------------ -# ContainerStateTerminated v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateTerminated - - - - - - - -ContainerStateTerminated is a terminated state of a container. - - - -Field | Description ------------- | ----------- -containerID
    *string* | Container's ID in the format 'docker://' -exitCode
    *integer* | Exit status from the last termination of the container -finishedAt
    *[Time](#time-unversioned)* | Time at which the container last terminated -message
    *string* | Message regarding the last termination of the container -reason
    *string* | (brief) reason from the last termination of the container -signal
    *integer* | Signal from the last termination of the container -startedAt
    *[Time](#time-unversioned)* | Time at which previous execution of the container started - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_definition.md deleted file mode 100644 index 7c5fa0142a..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstateterminated_v1_definition.md +++ /dev/null @@ -1,23 +0,0 @@ -## ContainerStateTerminated v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateTerminated - - - -ContainerStateTerminated is a terminated state of a container. - - - -Field | Description ------------- | ----------- -containerID
    *string* | Container's ID in the format 'docker://' -exitCode
    *integer* | Exit status from the last termination of the container -finishedAt
    *[Time](#time-unversioned)* | Time at which the container last terminated -message
    *string* | Message regarding the last termination of the container -reason
    *string* | (brief) reason from the last termination of the container -signal
    *integer* | Signal from the last termination of the container -startedAt
    *[Time](#time-unversioned)* | Time at which previous execution of the container started - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_concept.md deleted file mode 100644 index 9a9a3eeb1f..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# ContainerStateWaiting v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateWaiting - - - - - - - -ContainerStateWaiting is a waiting state of a container. - - - -Field | Description ------------- | ----------- -message
    *string* | Message regarding why the container is not yet running. -reason
    *string* | (brief) reason the container is not yet running. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_definition.md deleted file mode 100644 index a09ace9d38..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstatewaiting_v1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## ContainerStateWaiting v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStateWaiting - - - -ContainerStateWaiting is a waiting state of a container. - - - -Field | Description ------------- | ----------- -message
    *string* | Message regarding why the container is not yet running. -reason
    *string* | (brief) reason the container is not yet running. - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_concept.md deleted file mode 100644 index a77e8a3074..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_concept.md +++ /dev/null @@ -1,38 +0,0 @@ - - ------------ -# ContainerStatus v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStatus - - - - - - - -ContainerStatus contains details for the current status of this container. - - - -Field | Description ------------- | ----------- -containerID
    *string* | Container's ID in the format 'docker://'. More info: http://kubernetes.io/docs/user-guide/container-environment#container-information -image
    *string* | The image the container is running. More info: http://kubernetes.io/docs/user-guide/images -imageID
    *string* | ImageID of the container's image. -lastState
    *[ContainerState](#containerstate-v1)* | Details about the container's last termination condition. -name
    *string* | This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated. -ready
    *boolean* | Specifies whether the container has passed its readiness probe. -restartCount
    *integer* | 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. -state
    *[ContainerState](#containerstate-v1)* | Details about the container's current condition. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_definition.md deleted file mode 100644 index 4154b694f7..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_containerstatus_v1_definition.md +++ /dev/null @@ -1,24 +0,0 @@ -## ContainerStatus v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | ContainerStatus - - - -ContainerStatus contains details for the current status of this container. - - - -Field | Description ------------- | ----------- -containerID
    *string* | Container's ID in the format 'docker://'. More info: http://kubernetes.io/docs/user-guide/container-environment#container-information -image
    *string* | The image the container is running. More info: http://kubernetes.io/docs/user-guide/images -imageID
    *string* | ImageID of the container's image. -lastState
    *[ContainerState](#containerstate-v1)* | Details about the container's last termination condition. -name
    *string* | This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated. -ready
    *boolean* | Specifies whether the container has passed its readiness probe. -restartCount
    *integer* | 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. -state
    *[ContainerState](#containerstate-v1)* | Details about the container's current condition. - diff --git a/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md deleted file mode 100644 index 53ce2ba364..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_concept.md +++ /dev/null @@ -1,31 +0,0 @@ - - ------------ -# CPUTargetUtilization v1beta1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1beta1 | CPUTargetUtilization - - - - - - - - - - - -Field | Description ------------- | ----------- -targetPercentage
    *integer* | fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md b/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md deleted file mode 100644 index c24e29a5c4..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cputargetutilization_v1beta1_definition.md +++ /dev/null @@ -1,17 +0,0 @@ -## CPUTargetUtilization v1beta1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1beta1 | CPUTargetUtilization - - - - - - - -Field | Description ------------- | ----------- -targetPercentage
    *integer* | fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use. - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md deleted file mode 100644 index f9084661df..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_concept.md +++ /dev/null @@ -1,1000 +0,0 @@ - - ------------ -# CronJob v2alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Batch | v2alpha1 | CronJob - - - - - - - -CronJob represents the configuration of a single cron job. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -spec
    *[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status -status
    *[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status - - -### CronJobSpec v2alpha1 - - - -Field | Description ------------- | ----------- -concurrencyPolicy
    *string* | ConcurrencyPolicy specifies how to treat concurrent executions of a Job. -jobTemplate
    *[JobTemplateSpec](#jobtemplatespec-v2alpha1)* | JobTemplate is the object that describes the job that will be created when executing a CronJob. -schedule
    *string* | Schedule contains the schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. -startingDeadlineSeconds
    *integer* | Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. -suspend
    *boolean* | Suspend flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. - -### CronJobStatus v2alpha1 - - - -Field | Description ------------- | ----------- -active
    *[ObjectReference](#objectreference-v1) array* | Active holds pointers to currently running jobs. -lastScheduleTime
    *[Time](#time-unversioned)* | LastScheduleTime keeps information of when was the last time the job was successfully scheduled. - -### CronJobList v2alpha1 - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - - - -## Write Operations - -See supported operations below... - -## Create - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -create a CronJob - -### HTTP Request - -`POST /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CronJob](#cronjob-v2alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## Replace - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace the specified CronJob - -### HTTP Request - -`PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CronJob](#cronjob-v2alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## Patch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update the specified CronJob - -### HTTP Request - -`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## Delete - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete a CronJob - -### HTTP Request - -`DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -gracePeriodSeconds | The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. -orphanDependents | Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[DeleteOptions](#deleteoptions-v1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - -## Delete Collection - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -delete collection of CronJob - -### HTTP Request - -`DELETE /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Status](#status-unversioned)* | OK - - - -## Read Operations - -See supported operations below... - -## Read - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read the specified CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -exact | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace' -export | Should this value be exported. Export strips fields that a user can not specify. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJobList](#cronjoblist-v2alpha1)* | OK - - -## List All Namespaces - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -list or watch objects of kind CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/cronjobs` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJobList](#cronjoblist-v2alpha1)* | OK - - -## Watch - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch changes to an object of kind CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs/{name}` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - -## Watch List - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs` - -### Path Parameters - -Parameter | Description ------------- | ----------- -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - -## Watch List All Namespaces - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -watch individual changes to a list of CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/watch/cronjobs` - - -### Query Parameters - -Parameter | Description ------------- | ----------- -fieldSelector | A selector to restrict the list of returned objects by their fields. Defaults to everything. -labelSelector | A selector to restrict the list of returned objects by their labels. Defaults to everything. -pretty | If 'true', then the output is pretty printed. -resourceVersion | When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. -timeoutSeconds | Timeout for the list/watch call. -watch | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. - - -### Response - -Code | Description ------------- | ----------- -200
    *[Event](#event-versioned)* | OK - - - -## Status Operations - -See supported operations below... - -## Patch Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -partially update status of the specified CronJob - -### HTTP Request - -`PATCH /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[Patch](#patch-unversioned)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## Read Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -read status of the specified CronJob - -### HTTP Request - -`GET /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - -## Replace Status - ->bdocs-tab:kubectl `kubectl` Command - -```bdocs-tab:kubectl_shell - -Coming Soon - -``` - ->bdocs-tab:curl `curl` Command (*requires `kubectl proxy` to be running*) - -```bdocs-tab:curl_shell - -Coming Soon - -``` - ->bdocs-tab:kubectl Output - -```bdocs-tab:kubectl_json - -Coming Soon - -``` ->bdocs-tab:curl Response Body - -```bdocs-tab:curl_json - -Coming Soon - -``` - - - -replace status of the specified CronJob - -### HTTP Request - -`PUT /apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status` - -### Path Parameters - -Parameter | Description ------------- | ----------- -name | name of the CronJob -namespace | object name and auth scope, such as for teams and projects - -### Query Parameters - -Parameter | Description ------------- | ----------- -pretty | If 'true', then the output is pretty printed. - -### Body Parameters - -Parameter | Description ------------- | ----------- -body
    *[CronJob](#cronjob-v2alpha1)* | - -### Response - -Code | Description ------------- | ----------- -200
    *[CronJob](#cronjob-v2alpha1)* | OK - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md deleted file mode 100644 index a3477fe785..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjob_v2alpha1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## CronJob v2alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Batch | v2alpha1 | CronJob - - - -CronJob represents the configuration of a single cron job. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ObjectMeta](#objectmeta-v1)* | Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata -spec
    *[CronJobSpec](#cronjobspec-v2alpha1)* | Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status -status
    *[CronJobStatus](#cronjobstatus-v2alpha1)* | Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md deleted file mode 100644 index f63337e893..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# CronJobList v2alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobList - - - - - - - -CronJobList is a collection of cron jobs. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md deleted file mode 100644 index 9c0f2059d8..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjoblist_v2alpha1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## CronJobList v2alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobList - - - -CronJobList is a collection of cron jobs. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources -items
    *[CronJob](#cronjob-v2alpha1) array* | Items is the list of CronJob. -kind
    *string* | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds -metadata
    *[ListMeta](#listmeta-unversioned)* | Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_concept.md deleted file mode 100644 index 2e58bf43c9..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_concept.md +++ /dev/null @@ -1,35 +0,0 @@ - - ------------ -# CronJobSpec v2alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobSpec - - - - - - - -CronJobSpec describes how the job execution will look like and when it will actually run. - - - -Field | Description ------------- | ----------- -concurrencyPolicy
    *string* | ConcurrencyPolicy specifies how to treat concurrent executions of a Job. -jobTemplate
    *[JobTemplateSpec](#jobtemplatespec-v2alpha1)* | JobTemplate is the object that describes the job that will be created when executing a CronJob. -schedule
    *string* | Schedule contains the schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. -startingDeadlineSeconds
    *integer* | Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. -suspend
    *boolean* | Suspend flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_definition.md deleted file mode 100644 index 56dd8832c3..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjobspec_v2alpha1_definition.md +++ /dev/null @@ -1,21 +0,0 @@ -## CronJobSpec v2alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobSpec - - - -CronJobSpec describes how the job execution will look like and when it will actually run. - - - -Field | Description ------------- | ----------- -concurrencyPolicy
    *string* | ConcurrencyPolicy specifies how to treat concurrent executions of a Job. -jobTemplate
    *[JobTemplateSpec](#jobtemplatespec-v2alpha1)* | JobTemplate is the object that describes the job that will be created when executing a CronJob. -schedule
    *string* | Schedule contains the schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. -startingDeadlineSeconds
    *integer* | Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. -suspend
    *boolean* | Suspend flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md deleted file mode 100644 index 3bd2980690..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_concept.md +++ /dev/null @@ -1,32 +0,0 @@ - - ------------ -# CronJobStatus v2alpha1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobStatus - - - - - - - -CronJobStatus represents the current state of a cron job. - - - -Field | Description ------------- | ----------- -active
    *[ObjectReference](#objectreference-v1) array* | Active holds pointers to currently running jobs. -lastScheduleTime
    *[Time](#time-unversioned)* | LastScheduleTime keeps information of when was the last time the job was successfully scheduled. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md b/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md deleted file mode 100644 index 021803c3e1..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_cronjobstatus_v2alpha1_definition.md +++ /dev/null @@ -1,18 +0,0 @@ -## CronJobStatus v2alpha1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v2alpha1 | CronJobStatus - - - -CronJobStatus represents the current state of a cron job. - - - -Field | Description ------------- | ----------- -active
    *[ObjectReference](#objectreference-v1) array* | Active holds pointers to currently running jobs. -lastScheduleTime
    *[Time](#time-unversioned)* | LastScheduleTime keeps information of when was the last time the job was successfully scheduled. - diff --git a/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md deleted file mode 100644 index e18c960c76..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_concept.md +++ /dev/null @@ -1,33 +0,0 @@ - - ------------ -# CrossVersionObjectReference v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CrossVersionObjectReference - - - - - - - -CrossVersionObjectReference contains enough information to let you identify the referred resource. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | API version of the referent -kind
    *string* | Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds" -name
    *string* | Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md deleted file mode 100644 index 49aabee65c..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_crossversionobjectreference_v1_definition.md +++ /dev/null @@ -1,19 +0,0 @@ -## CrossVersionObjectReference v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | CrossVersionObjectReference - - - -CrossVersionObjectReference contains enough information to let you identify the referred resource. - - - -Field | Description ------------- | ----------- -apiVersion
    *string* | API version of the referent -kind
    *string* | Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds" -name
    *string* | Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names - diff --git a/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_concept.md b/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_concept.md deleted file mode 100644 index e745761332..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_concept.md +++ /dev/null @@ -1,31 +0,0 @@ - - ------------ -# DaemonEndpoint v1 - - - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | DaemonEndpoint - - - - - - - -DaemonEndpoint contains information about a single Daemon endpoint. - - - -Field | Description ------------- | ----------- -Port
    *integer* | Port number of the given endpoint. - - - - - - diff --git a/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_definition.md b/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_definition.md deleted file mode 100644 index f2b131a01e..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_daemonendpoint_v1_definition.md +++ /dev/null @@ -1,17 +0,0 @@ -## DaemonEndpoint v1 - -Group | Version | Kind ------------- | ---------- | ----------- -Core | v1 | DaemonEndpoint - - - -DaemonEndpoint contains information about a single Daemon endpoint. - - - -Field | Description ------------- | ----------- -Port
    *integer* | Port number of the given endpoint. - diff --git a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md b/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md deleted file mode 100644 index c44c764460..0000000000 --- a/docs/api-reference/v1.5/documents/_generated_daemonset_v1beta1_concept.md +++ /dev/null @@ -1,1110 +0,0 @@ - - ------------ -# DaemonSet v1beta1 - ->bdocs-tab:kubectl DaemonSet Config to print the `hostname` on each Node in the cluster every 10 seconds. - -```bdocs-tab:kubectl_yaml - -apiVersion: extensions/v1beta1 -kind: DaemonSet -metadata: - # Unique key of the DaemonSet instance - name: daemonset-example -spec: - template: - metadata: - labels: - app: daemonset-example - spec: - containers: - # This container is run once on each Node in the cluster - - name: daemonset-example - image: ubuntu:trusty - command: - - /bin/sh - args: - - -c - # This script is run through `sh -c